diff options
author | Geert-Jan Zwiers <geertjanzwiers@protonmail.com> | 2022-05-06 19:37:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-06 19:37:18 +0200 |
commit | dd1d6a0f67cb386941ddc08aa453612f8398144f (patch) | |
tree | 450ebcac29f6c812245939449a08d83e4e5e3e61 /cli/dts | |
parent | 23c77df6643f5b5a8846f67a738fe2e9c1e3c716 (diff) |
feat(web): add `performance.timeOrigin` (#14489)
Add support for the `performance.timeOrigin` web API.
Co-authored-by: Jovi De Croock <decroockjovi@gmail.com>
Diffstat (limited to 'cli/dts')
-rw-r--r-- | cli/dts/lib.deno.shared_globals.d.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/dts/lib.deno.shared_globals.d.ts b/cli/dts/lib.deno.shared_globals.d.ts index 5f44e2d1b..b96c56dba 100644 --- a/cli/dts/lib.deno.shared_globals.d.ts +++ b/cli/dts/lib.deno.shared_globals.d.ts @@ -450,6 +450,7 @@ declare class Worker extends EventTarget { declare type PerformanceEntryList = PerformanceEntry[]; declare class Performance { + readonly timeOrigin: number; constructor(); /** Removes the stored timestamp with the associated name. */ |