Trilium Frontend API
    Preparing search index...

    Interface RenderDataInternal

    The module:ui/template~Template#_renderNode configuration.

    interface RenderData {
        intoFragment: boolean;
        isApplying: boolean;
        node: HTMLElement | Text;
        revertData?: RevertData;
    }
    Index

    Properties

    intoFragment: boolean

    Tells module:ui/template~Template#_renderNode to render children into DocumentFragment first and then append the fragment to the parent element. It is a speed optimization.

    isApplying: boolean

    Indicates whether the #node has been provided by module:ui/template~Template#apply.

    A node which is being rendered.

    revertData?: RevertData

    An object storing the data that helps module:ui/template~Template#revert bringing back an element to its initial state, i.e. before module:ui/template~Template#apply was called.