Shape of the options parameter passed to an action.

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

Hierarchy (View Summary)

Indexable

  • readonly [key: string]: unknown

    Arbitrary properties.

Properties

Properties

items?: readonly ActionItem[]

The items for which the action is triggered.