19 lines
286 B
TypeScript
19 lines
286 B
TypeScript
export type KbxStatusSemantic =
|
|
| 'draft'
|
|
| 'ready'
|
|
| 'info'
|
|
| 'pending'
|
|
| 'processing'
|
|
| 'completed'
|
|
| 'hold'
|
|
| 'warning'
|
|
| 'error'
|
|
| 'cancelled'
|
|
| 'disabled'
|
|
|
|
export interface KbxStatusDefinition {
|
|
value: string
|
|
label: string
|
|
semantic: KbxStatusSemantic
|
|
}
|