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