Interface ActionOptions

Shape of the options parameter passed to an action.

interface ActionOptions {
    items?: readonly ActionItem[];
    [key: string]: unknown;
}

Hierarchy (view full)

Indexable

[key: string]: unknown

Arbitrary properties.

Properties

Properties

items?: readonly ActionItem[]

The items for which the action is triggered.

Generated using TypeDoc