now.d.ts 271 B

1234567891011121314151617
  1. import { XEUtilsMethods } from '../xe-utils'
  2. /**
  3. * 返回当前时间戳
  4. */
  5. export declare function now(): number;
  6. declare module '../xe-utils' {
  7. interface XEUtilsMethods {
  8. /**
  9. * 返回当前时间戳
  10. */
  11. now: typeof now;
  12. }
  13. }
  14. export default now