summaryrefslogtreecommitdiff
path: root/op_crates/file/internal.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'op_crates/file/internal.d.ts')
-rw-r--r--op_crates/file/internal.d.ts18
1 files changed, 0 insertions, 18 deletions
diff --git a/op_crates/file/internal.d.ts b/op_crates/file/internal.d.ts
deleted file mode 100644
index dd892e736..000000000
--- a/op_crates/file/internal.d.ts
+++ /dev/null
@@ -1,18 +0,0 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
-
-/// <reference no-default-lib="true" />
-/// <reference lib="esnext" />
-
-declare namespace globalThis {
- declare namespace __bootstrap {
- declare var file: {
- Blob: typeof Blob & {
- [globalThis.__bootstrap.file._byteSequence]: Uint8Array;
- };
- readonly _byteSequence: unique symbol;
- File: typeof File & {
- [globalThis.__bootstrap.file._byteSequence]: Uint8Array;
- };
- };
- }
-}