material-form-builder
Version:
FormBuilder For React.js
9 lines (8 loc) • 510 B
TypeScript
import { ObjectLiteral } from "../types/helper.types";
export declare const randomString: (length: number) => string;
export declare const mask: (value: string, pattern: string, placeholder?: string) => string;
export declare const isArray: (data: any) => boolean;
export declare const isNull: (data: any) => boolean;
export declare const checkValue: (value: any) => boolean;
export declare const sleep: (ms: number) => Promise<unknown>;
export declare const stringify: (obj: ObjectLiteral) => string;