precisionDate.d.ts 244 B

123456789
  1. /**
  2. * Class containing a set of static utilities functions for precision date
  3. */
  4. export declare class PrecisionDate {
  5. /**
  6. * Gets either window.performance.now() if supported or Date.now() else
  7. */
  8. static get Now(): number;
  9. }