Type Alias BookPageControl<ControlType>

BookPageControl<ControlType>: {
    controlName: string;
    controlType: ControlType;
    initValue: BookPageControlValueType[ControlType];
} & (ControlType extends Dropdown
    ? {
        options: string[];
    }
    : EmptyObject)

Adds a control to an element-book page.

Type Parameters

Type declaration