@anushase/json-form-builder
Version:
A dynamic JSON form builder with multi-language support, validation, and responsive design
22 lines (21 loc) • 473 B
TypeScript
declare const ControlType: {
TEXTBOX: string;
PASSWORD: string;
DATE: string;
DROPDOWN: string;
CHECKBOX: string;
PHONE: string;
PHOTO: string;
FILE: string;
};
declare const InputType: {
STRING: string;
SIMPLE_TYPE: string;
};
declare const CameraErrorCodes: {
PERMISSION_DENIED: string;
NOT_ACCESSIBLE: string;
CAMERA_NOT_FOUND: string;
NOT_READABLE: string;
};
export { ControlType, InputType, CameraErrorCodes };