index.d.ts 218 B

12345678
  1. // This file describes the package to typescript.
  2. /**
  3. * Returns the number of milliseconds since the page was loaded (if browser)
  4. * or the node process was started.
  5. */
  6. declare function now(): number;
  7. export = now;