now.d.ts 175 B

123456789101112
  1. /**
  2. * 返回当前时间戳
  3. */
  4. export declare function now(): number;
  5. declare module './ctor' {
  6. interface XEUtilsMethods {
  7. now: typeof now;
  8. }
  9. }
  10. export default now