Timer.d.ts 393 B

123456789101112131415
  1. /**
  2. * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
  3. *
  4. * This source code is licensed under the MIT license found in the
  5. * LICENSE file in the root directory of this source tree.
  6. *
  7. */
  8. export default class Timer {
  9. start: () => void;
  10. elapsed: () => number;
  11. constructor(options?: {
  12. now?: () => number;
  13. });
  14. }
  15. //# sourceMappingURL=Timer.d.ts.map