type Brand = T & { __kind__?: B; }; type LiteralUnion = L | Brand; export type TypeReturn = LiteralUnion<('Undefined' | 'Null' | 'Array' | 'String' | 'Arguments' | 'Function' | 'Error' | 'Boolean' | 'Number' | 'Date' | 'RegExp' | 'Object' | 'JSON' | 'Math' | 'Symbol' | 'Map' | 'Set' | 'WeakMap' | 'WeakSet'), string>; /** * 检测 `value` 的类型 * @param value 要检测的值 * @returns 返回检测值的类型 * @example */ export default function getType(value: any): TypeReturn; export {};