aboutsummaryrefslogtreecommitdiff
path: root/types/dev
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2023-12-03 11:15:50 -0500
committertoasted-nutbread <toasted-nutbread@users.noreply.github.com>2023-12-03 11:15:50 -0500
commit97bc188ca6beb2057ab734e791b1afe96b6e4650 (patch)
treeadbdc48e0a976d5406c466555b42a9422d48e0b3 /types/dev
parent083b4749139213c6fefe80166d73f54604a85267 (diff)
Remove unused types
Diffstat (limited to 'types/dev')
-rw-r--r--types/dev/vm.d.ts21
1 files changed, 0 insertions, 21 deletions
diff --git a/types/dev/vm.d.ts b/types/dev/vm.d.ts
index f103de97..3eb0949f 100644
--- a/types/dev/vm.d.ts
+++ b/types/dev/vm.d.ts
@@ -17,27 +17,6 @@
import type * as Translation from '../ext/translation';
-export type PseudoURL = {
- hash: string;
- host: string;
- hostname: string;
- href: string;
- toString(): string;
- origin: string;
- password: string;
- pathname: string;
- port: string;
- protocol: string;
- search: string;
- searchParams: URLSearchParams;
- username: string;
- toJSON(): string;
-};
-
-export type VMAssert = {
- deepStrictEqual: (actual: unknown, expected: unknown) => void;
-};
-
export type PseudoChrome = {
runtime: {
getURL(path: string): string;