UNPKG

230 BTypeScriptView Raw
1/**
2 * 获取对象类型
3 * @param obj 对象
4 */
5export declare function getType(obj: any): string;
6
7declare module './ctor' {
8 interface XEUtilsMethods {
9 getType: typeof getType;
10 }
11}
12
13export default getType