element-book - v25.2.0
    Preparing search index...

    Type Alias BookElementExample<GlobalValuesType, ControlsInit, State>

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

    An individual element example for an element-book page.

    Type Parameters