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

    Type Alias BookElementExample<GlobalValuesType, ControlsInit, State>

    BookElementExample: Overwrite<
        BaseBookEntry,
        {
            entryType: ElementExample;
            isVertical: boolean;
            parent: BookPage
            | undefined;
            render: (
                renderParams: BookPageExampleRenderParams<
                    GlobalValuesType,
                    ControlsInit,
                    State,
                >,
            ) => HtmlInterpolation;
        } & PartialWithUndefined<
            {
                showEvents: ReadonlyArray<string | TypedEvent>;
                state: () => State;
                styles: CSSResult;
            },
        >,
    >

    An individual element example for an element-book page.

    Type Parameters