interface RenderDestination {
    write(chunk): void;
}

Methods

Methods

  • Any rendering logic should call this to construct the HTML output. See the chunk parameter for possible writable values.

    Parameters

    Returns void