13 lines
303 B
TypeScript
13 lines
303 B
TypeScript
export const InputTypes: { [key: string]: string } = {
|
|
TEXT: "TEXT",
|
|
NUMBER: "NUMBER",
|
|
INTEGER: "INTEGER",
|
|
PHONE_NUMBER: "PHONE_NUMBER",
|
|
EMAIL: "EMAIL",
|
|
PASSWORD: "PASSWORD",
|
|
CURRENCY: "CURRENCY",
|
|
SEARCH: "SEARCH",
|
|
};
|
|
|
|
export type InputType = typeof InputTypes[keyof typeof InputTypes];
|