Type Alias BookPageControl<ControlType>

BookPageControl: {
    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