Merge pull request #450 from emrysal/bugfix/custom-inputs

This commit is contained in:
Bailey Pumfleet
2021-08-16 10:35:28 +01:00
committed by GitHub
6 changed files with 44 additions and 1172 deletions

View File

@@ -1,13 +0,0 @@
export enum EventTypeCustomInputType {
Text = 'text',
TextLong = 'textLong',
Number = 'number',
Bool = 'bool',
}
export interface EventTypeCustomInput {
id?: number;
type: EventTypeCustomInputType;
label: string;
required: boolean;
}