DOMHighResTimeStamp.h 258 B

1234567891011121314
  1. /*
  2. * Copyright (c) 2022, Linus Groh <linusg@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. namespace Web::HighResolutionTime {
  8. // https://w3c.github.io/hr-time/#dom-domhighrestimestamp
  9. using DOMHighResTimeStamp = double;
  10. }