Interface TableAction

Base interface for BulkTableActions and RowTableActions.

interface TableAction {
    id: string;
    label?: string;
    priority?: number;
    uiType: "button";
}

Hierarchy (view full)

Properties

id: string

ID used to identify this action.

label?: string

optional label of actions used as source of ordering. *

priority?: number

optional flag of actions used as source of ordering. *

uiType: "button"

Type of action that describes how it is rendered, e.g. as a button *

Generated using TypeDoc