// Copyright 2023 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import type {Brand} from './Brand.js'; export type Seconds = Brand; export type MilliSeconds = Brand; export type MicroSeconds = Brand; export function milliSecondsToSeconds(x: MilliSeconds): Seconds { return (x / 1000) as Seconds; } export function microSecondsToMilliSeconds(x: MicroSeconds): MilliSeconds { return (x / 1000) as MilliSeconds; }