Interface for generic renderer.

interface IRenderer {
    render: (container: HTMLElement, options?: any) => void;
    unrender?: (container: HTMLElement, options?: any) => void;
}

Properties

Properties

render: (container: HTMLElement, options?: any) => void
unrender?: (container: HTMLElement, options?: any) => void