UNPKG

443 BTypeScriptView Raw
1/**
2 * 将日期转为时间戳
3 * @param date 字符串/日期/时间戳
4 * @param format 解析格式 yyyy MM dd HH mm ss SSS
5 */
6export declare function timestamp(date: string | Date | number, format?: string | null): number;
7export declare function timestamp(date: any, format?: string | null): number;
8
9declare module './ctor' {
10 interface XEUtilsMethods {
11 timestamp: typeof timestamp;
12 }
13}
14
15export default timestamp