PromucFlow_constructor/app/client/src/constants/WidgetValidation.ts

11 lines
280 B
TypeScript
Raw Normal View History

2019-11-19 12:44:58 +00:00
export const VALIDATION_TYPES = {
TEXT: "TEXT",
NUMBER: "NUMBER",
BOOLEAN: "BOOLEAN",
OBJECT: "OBJECT",
TABLE_DATA: "TABLE_DATA",
};
export type ValidationType = (typeof VALIDATION_TYPES)[keyof typeof VALIDATION_TYPES];
export type Validator = (value: any) => boolean;