cw-form-render-mobile
Version:
通过 JSON Schema 生成标准 Form,常用于自定义搭建配置界面生成
26 lines (25 loc) • 1.38 kB
TypeScript
import { has as _has } from 'lodash-es';
export declare const _set: any;
export declare const _get: any;
export declare const _cloneDeep: any;
export { _has };
export declare const _merge: any;
export declare const _isUndefined: any;
export declare const _omitBy: any;
export declare const _mergeWith: any;
export declare const isObject: (data: any) => boolean;
export declare const isArray: (data: any) => boolean;
export declare const isFunction: (data: any) => boolean;
export declare function isUrl(string: string): boolean;
export declare const isNumber: (str: string | number) => boolean;
export declare const getArray: (arr: any, defaultValue?: any[]) => any[];
export declare function getFormat(format: any): any;
export declare function isObjType(schema: any): any;
export declare function isListType(schema: any): boolean;
export declare function isCheckBoxType(schema: any, readOnly: any): boolean;
export declare const valueRemoveUndefined: (values: any, notFilter?: boolean) => any;
export declare const translation: (configCtx: any) => (key: string) => any;
export declare const warn: (str: string, ...args: any[]) => void;
export declare const getWidget: (widgets: any, widgetName: string, schema: any, readOnly?: boolean) => any;
export declare const hasFuncProperty: (obj: any) => any;
export declare function parseToDate(value: any, format?: string): Date;