interface IControlBarSection {
    buttons: IControlBarButtonItem[];
    enable?: () => boolean;
    id: string;
    style?: string;
}

Properties

enable?: () => boolean
id: string
style?: string