Choices/public/types/src/scripts/interfaces/choice.d.ts

16 lines
369 B
TypeScript
Raw Normal View History

2021-12-26 22:38:09 +01:00
export interface Choice {
id?: number;
customProperties?: Record<string, any>;
disabled?: boolean;
active?: boolean;
elementId?: number;
groupId?: number;
keyCode?: number;
label: string;
placeholder?: boolean;
selected?: boolean;
2022-01-01 00:11:45 +01:00
value: any;
2021-12-26 22:38:09 +01:00
score?: number;
choices?: Choice[];
}
//# sourceMappingURL=choice.d.ts.map