getType.d.ts 217 B

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