14 lines
225 B
TypeScript
14 lines
225 B
TypeScript
/**
|
|
* 转字符串
|
|
* @param obj 值
|
|
*/
|
|
export declare function toString(obj: any): string;
|
|
|
|
declare module './ctor' {
|
|
interface XEUtilsMethods {
|
|
toString: typeof toString;
|
|
}
|
|
}
|
|
|
|
export default toString
|