cal.pub0.org/lib/eventTypeInput.ts

14 lines
267 B
TypeScript
Raw Normal View History

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