mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-22 17:13:20 +00:00
17 lines
314 B
C
17 lines
314 B
C
![]() |
/*
|
||
|
* Copyright (c) 2025, Jelle Raaijmakers <jelle@ladybird.org>
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <LibWeb/WebIDL/Types.h>
|
||
|
|
||
|
namespace Web::HighResolutionTime {
|
||
|
|
||
|
// https://www.w3.org/TR/hr-time-3/#the-epochtimestamp-typedef
|
||
|
using EpochTimeStamp = WebIDL::UnsignedLongLong;
|
||
|
|
||
|
}
|