/// import { formatDate as overrideFormatDate } from '@wakeadmin/utils'; /** * element-ui 使用了自定义的时间格式: * * | dayjs | element-ui | * |--------|------------| * | YYYY | yyyy | * | w/ww | W/WW | * | DD | dd | * | ss | SS | * | x | timestamp | 毫秒 * * 规范化时间格式,以 dayjs 为基准, 转换为 dayjs 能识别的格式 * * @param format */ export declare const normalizeToDayjsFormat: ((format: string) => string) & import("lodash").MemoizedFunction; /** * 格式化日期:vue 2 下需要进行规范化 */ export declare const formatDate: typeof overrideFormatDate; //# sourceMappingURL=date.d.ts.map