UNPKG

di-shan-utils

Version:

JavaScript 函数库、工具类

14 lines (11 loc) 217 B
/** * 获取对象类型 * @param obj 对象 */ export declare function getType(obj: any): string; declare module './ctor' { interface DIUtilsMethods { getType: typeof getType; } } export default getType