Skip to main content

Interface: DialogButtonInfo

Defined in: src/modules/dialog.ts:100

Information about a button within a dialog.

Example​

const btn: DialogButtonInfo = { text: 'OK', id: 'btn1', type: 'Emphasized', enabled: true };

Properties​

enabled​

readonly enabled: boolean

Defined in: src/modules/dialog.ts:104


id​

readonly id: string

Defined in: src/modules/dialog.ts:102


text​

readonly text: string

Defined in: src/modules/dialog.ts:101


type?​

readonly optional type: string

Defined in: src/modules/dialog.ts:103