UNPKG

225 BTypeScriptView Raw
1/**
2 * 转字符串
3 * @param obj 值
4 */
5export declare function toString(obj: any): string;
6
7declare module './ctor' {
8 interface XEUtilsMethods {
9 toString: typeof toString;
10 }
11}
12
13export default toString