- export declare function toValueString(obj: number | string | any[]): string;
- export declare function toValueString(obj: any): string;
-
- declare module './ctor' {
- interface XEUtilsMethods {
- toValueString: typeof toValueString;
- }
- }
-
- export default toValueString
-
|