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