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

23 lines
671 B
TypeScript
Raw Normal View History

2024-12-03 17:40:13 +08:00
/**
*
* @param str //
*/
export declare function toStringDate(str: string | Date | number | null): Date;
export declare function toStringDate(str: any): Date;
/**
*
* @param str //
* @param format yyyy MM dd HH mm ss SSS
*/
export declare function toStringDate(str: string | Date | number | null, format: string | null): Date;
export declare function toStringDate(str: any, format: string | null): Date;
declare module './ctor' {
interface XEUtilsMethods {
toStringDate: typeof toStringDate;
}
}
export default toStringDate