Skip to main content
Version: 1.x

Interface: DialogButtonInfo

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

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:113


id

readonly id: string

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


text

readonly text: string

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


type?

readonly optional type: string

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