hosanna-ui-docs - v0.9.0
    Preparing search index...

    Interface IRenderable

    Interface for objects that can be rendered in the UI.

    interface IRenderable {
        boundView: undefined | IHosannaView<ViewState>;
        div: undefined | HTMLDivElement;
        mount(): void;
        render(): void;
        showDebugBounds(show: boolean): void;
        unmount(): void;
    }

    Hierarchy (View Summary)

    Index

    Properties

    boundView: undefined | IHosannaView<ViewState>

    The view instance bound to this renderable.

    div: undefined | HTMLDivElement

    The root HTML div element for this renderable, if any.

    Methods