Interface ITab

interface ITab {
    blocks: IBlock[];
    blockTemplates: IBlock[];
    code: string;
    condition?: ICondition;
    cssClasses?: string;
    expandable: boolean;
    expandableDefault?: ExpandableDefaultEnum;
    expandableId: string;
    htmlLabel?: string;
    id: string;
    label: string;
    removeIf?: string[];
    repeatable: boolean;
    repeatableAlwaysShowHeaderFooter: boolean;
    repeatableAnchors: boolean;
    repeatableLabel: string;
    repeatableLabelAdd: string;
    repeatableLabelRemove: string;
    repeatableMax: number;
    repeatableMin: number;
    repeatableShowOnlyLastToolbar: boolean;
    repeatableToolbar: boolean;
    repeatingUnitFooter?: string[];
    repeatingUnitHeader?: string[];
    state?: IState;
    tooltip?: string;
}

Properties

blocks: IBlock[]
blockTemplates: IBlock[]
code: string
condition?: ICondition
cssClasses?: string
expandable: boolean
expandableDefault?: ExpandableDefaultEnum
expandableId: string
htmlLabel?: string
id: string
label: string
removeIf?: string[]
repeatable: boolean
repeatableAlwaysShowHeaderFooter: boolean
repeatableAnchors: boolean
repeatableLabel: string
repeatableLabelAdd: string
repeatableLabelRemove: string
repeatableMax: number
repeatableMin: number
repeatableShowOnlyLastToolbar: boolean
repeatableToolbar: boolean
repeatingUnitFooter?: string[]
repeatingUnitHeader?: string[]
state?: IState
tooltip?: string