Type Alias BookPageInit<GlobalValuesType, ParentPage, CurrentControlsInit>

BookPageInit: SetOptionalAndNullable<
    Omit<
        BookPage<any, ParentPage, CurrentControlsInit>,
        "entryType" | "elementExamples" | "errors",
    >,
    "controls" | "descriptionParagraphs",
> & {
    defineExamples?: ElementExamplesDefiner<
        CollapseGlobalValuesType<ParentPage, GlobalValuesType>,
        CollapseControlsInit<ParentPage, CurrentControlsInit>,
    >;
}

The parameters for initializing a new element-book page.

Type Parameters