summaryrefslogtreecommitdiff
path: root/extensions/file/internal.d.ts
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2021-06-10 15:26:10 +0200
committerGitHub <noreply@github.com>2021-06-10 15:26:10 +0200
commit6091ea098a86cafb38aed3228a64ad96a046c817 (patch)
tree1533eb7872db17abe2d88a8db32c4719d403ba4d /extensions/file/internal.d.ts
parentfb20a6af761c8eb61a046b4c70e28061923e36ca (diff)
refactor: merge deno_file crate into deno_web (#10914)
This refactor makes it so there's one less crate to publish on each release.
Diffstat (limited to 'extensions/file/internal.d.ts')
-rw-r--r--extensions/file/internal.d.ts18
1 files changed, 0 insertions, 18 deletions
diff --git a/extensions/file/internal.d.ts b/extensions/file/internal.d.ts
deleted file mode 100644
index dd892e736..000000000
--- a/extensions/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;
- };
- };
- }
-}