Files
tekelanew_acs/acs/nladmin-ui/node_modules/xe-utils/toFormatString.d.ts

16 lines
384 B
TypeScript
Raw Normal View History

2024-12-03 17:40:13 +08:00
/**
*
* @param { string } str
* @param { object | any[] } obj
*/
export declare function toFormatString(str: string | null, list: any[]): string;
export declare function toFormatString(str: any, obj: any): string;
declare module './ctor' {
interface XEUtilsMethods {
toFormatString: typeof toFormatString;
}
}
export default toFormatString