calcom/lib/EventTypeInput.ts

15 lines
250 B
TypeScript
Raw Normal View History

2021-06-18 19:58:42 +00:00
export enum EventTypeCustomInputType {
Text = 'text',
TextLong = 'textLong',
Number = 'number',
}
export interface EventTypeCustomInput {
id?: number;
type: EventTypeCustomInputType;
label: string;
required: boolean;
}