ladybird/Libraries/LibWeb/HighResolutionTime/EpochTimeStamp.h

17 lines
314 B
C
Raw Normal View History

/*
* 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;
}