timestamp.d.ts 428 B

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