diff options
| author | cjihrig <cjihrig@gmail.com> | 2022-05-11 21:15:54 -0400 |
|---|---|---|
| committer | Colin Ihrig <cjihrig@gmail.com> | 2022-06-16 12:05:33 -0400 |
| commit | 95312ab53a3a118955278a27a0297a17889ad36e (patch) | |
| tree | 287be428d28e3477380813c9849d36f0f0502569 /cli/dts | |
| parent | 364da468d24653b00c9989187f3d45609f007265 (diff) | |
fix: make Performance global an EventTarget
This commit updates the Performance global to extend
EventTarget.
Diffstat (limited to 'cli/dts')
| -rw-r--r-- | cli/dts/lib.deno.shared_globals.d.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/dts/lib.deno.shared_globals.d.ts b/cli/dts/lib.deno.shared_globals.d.ts index d430c16b0..efd59ca2e 100644 --- a/cli/dts/lib.deno.shared_globals.d.ts +++ b/cli/dts/lib.deno.shared_globals.d.ts @@ -449,7 +449,7 @@ declare class Worker extends EventTarget { declare type PerformanceEntryList = PerformanceEntry[]; -declare class Performance { +declare class Performance extends EventTarget { /** Returns a timestamp representing the start of the performance measurement. */ readonly timeOrigin: number; constructor(); |
