UNPKG

linkmore-design

Version:

🌈 πŸš€lmη»„δ»ΆεΊ“γ€‚πŸš€

25 lines (24 loc) β€’ 676 B
export declare type OperatorProps = { label: string; value: string; }; declare enum operatorType { 'input' = 0, 'enum' = 1, 'select' = 2, 'checkbox' = 3, 'cascader' = 4, 'date' = 5, 'range' = 6, 'number' = 7, 'code' = 8 } declare type keyType = keyof typeof operatorType; export declare type OperatorGroupProps = { [x in keyType]: OperatorProps[]; }; export declare const getOpetatorGroup: (locale: any, fieldValueSource: any, fieldValueType: any) => OperatorGroupProps; declare const _default: { getOpetatorGroup: (locale: any, fieldValueSource: any, fieldValueType: any) => OperatorGroupProps; }; export default _default;