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