element-book - v26.16.0
    Preparing search index...

    Variable ElementBookAppConst

    ElementBookApp: DeclarativeElementDefinition<
        "element-book-app",
        ElementBookConfig,
        {
            colors: ColorThemeState;
            currentRoute: Readonly<
                Readonly<Required<SpaRoute<ValidBookPaths, undefined, undefined>>>,
            >;
            loading: boolean;
            originalWindowTitle: string | undefined;
            router: SpaRouter<ValidBookPaths, undefined, undefined> | undefined;
            treeBasedControls:
                | {
                    controls: ControlsWrapper;
                    lastGlobalInputs: GlobalValues;
                    pages: readonly BookPage[];
                }
                | undefined;
        },
        { pathUpdate: DefineEvent<readonly string[]> },
        "element-book-app-",
        "element-book-app-",
        readonly [],
        readonly [],
    > = ...

    The element-book app itself. Instantiate one of these where you want your element-book pages to render. Make sure to also provide an array of pages to actually render!