Skip to content

Commit a34d8a9

Browse files
committed
fix: remaining deno issues
1 parent ab0ed52 commit a34d8a9

File tree

3 files changed

+0
-10
lines changed

3 files changed

+0
-10
lines changed

vendor/deno/cli/dts/lib.deno.window.d.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,20 +21,15 @@ declare class Window extends EventTarget {
2121
navigator: Navigator;
2222
Location: typeof Location;
2323
location: Location;
24-
localStorage: Storage;
25-
sessionStorage: Storage;
2624
}
2725

2826
declare var window: Window & typeof globalThis;
2927
declare var self: Window & typeof globalThis;
3028
declare var onload: ((this: Window, ev: Event) => any) | null;
3129
declare var onunload: ((this: Window, ev: Event) => any) | null;
32-
declare var localStorage: Storage;
33-
declare var sessionStorage: Storage;
3430

3531
declare class Navigator {
3632
constructor();
37-
readonly gpu: GPU;
3833
}
3934

4035
declare var navigator: Navigator;

vendor/deno/cli/dts/lib.deno.worker.d.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ declare class WorkerGlobalScope {
3737

3838
declare class WorkerNavigator {
3939
constructor();
40-
readonly gpu: GPU;
4140
}
4241

4342
declare var navigator: WorkerNavigator;

vendor/deno/cli/dts/lib.dom.d.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18359,7 +18359,6 @@ interface WindowEventHandlers {
1835918359
}
1836018360

1836118361
interface WindowLocalStorage {
18362-
readonly localStorage: Storage;
1836318362
}
1836418363

1836518364
interface WindowOrWorkerGlobalScope {
@@ -18382,7 +18381,6 @@ interface WindowOrWorkerGlobalScope {
1838218381
}
1838318382

1838418383
interface WindowSessionStorage {
18385-
readonly sessionStorage: Storage;
1838618384
}
1838718385

1838818386
interface WorkerEventMap extends AbstractWorkerEventMap {
@@ -19340,8 +19338,6 @@ declare function toString(): string;
1934019338
* Dispatches a synthetic event event to target and returns true if either event's cancelable attribute value is false or its preventDefault() method was not invoked, and false otherwise.
1934119339
*/
1934219340
declare function dispatchEvent(event: Event): boolean;
19343-
declare var sessionStorage: Storage;
19344-
declare var localStorage: Storage;
1934519341
/**
1934619342
* Fires when the user aborts the download.
1934719343
* @param ev The event.

0 commit comments

Comments
 (0)