UNPKG

iking-utils

Version:

金合前端工具库

14 lines (13 loc) 697 B
export * from './convertDate'; export * from './formatWeek'; export * from './getDate'; export * from './getMonthDay'; export * from './getSplitDay'; type TDate = string | Date | undefined; export declare function toDateTime(date?: TDate, format?: string): string; export declare function toDate(date?: TDate, format?: string): string; export declare function toY(date?: TDate, format?: string): string; export declare function toYM(date?: TDate, format?: string): string; export declare function toMD(date?: TDate, format?: string): string; export declare function toYMD(date?: TDate, format?: string): string; export declare function toYMDHM(date?: TDate, format?: string): string;