UNPKG

340 BTypeScriptView Raw
1/**
2 * 转字符串
3 * @param obj 值
4 */
5 export declare function toValueString(obj: number | string | any[] | null): string;
6 export declare function toValueString(obj: any): string;
7
8 declare module './ctor' {
9 interface XEUtilsMethods {
10 toValueString: typeof toValueString;
11 }
12 }
13
14 export default toValueString
15
\No newline at end of file