UNPKG

cv-dialog-sdk

Version:

Catavolt Dialog Javascript API

13 lines (12 loc) 476 B
export interface WorkbenchAction { /** * An alternative unique identifier. An alias is typically used to identify an action that is used in offline mode. * An alias should be more descriptive than the id, therefore an alias makes offline logic more descriptive. descriptive. */ readonly actionId?: string; readonly alias: string; readonly id: string; readonly iconBase: string; readonly name: string; readonly workbenchId: string; }