Type Alias ToolbarControl<T>

ToolbarControl<T>: Control<{}> & {
    attrs: {
        attributes: {
            disabled: boolean;
            state?: ActionState;
        } & T;
    };
    typeAttributes: never;
}

Type Parameters

  • T extends Record<any, any> = {}