13 lines
267 B
TypeScript
13 lines
267 B
TypeScript
export enum EventTypeCustomInputType {
|
|
Text = 'text',
|
|
TextLong = 'textLong',
|
|
Number = 'number',
|
|
Bool = 'bool',
|
|
}
|
|
|
|
export interface EventTypeCustomInput {
|
|
id?: number;
|
|
type: EventTypeCustomInputType;
|
|
label: string;
|
|
required: boolean;
|
|
}
|