/** * @description 常用类型 */ type Type = 'Number' | 'String' | 'Boolean' | 'Symbol' | 'BigInt' | 'Null' | 'Undefined' | 'Array' | 'Object' | 'Function' | 'Blob' | 'Date' | 'RegExp' | 'Error' | 'Map' | 'Set' | 'WeakMap' | 'WeakSet' | 'Promise' | 'GeneratorFunction' | 'Generator' | 'AsyncFunction' | 'File' | 'FormData' | string; /** * @description 获取检测值的类型 * @param value - 要检测的值 */ export declare const getType: (value: any) => Type; export {};