calcom/lib/EventTypeInput.ts
2021-06-18 21:58:42 +02:00

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;
}