diff options
Diffstat (limited to 'extensions/web/internal.d.ts')
-rw-r--r-- | extensions/web/internal.d.ts | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/extensions/web/internal.d.ts b/extensions/web/internal.d.ts index bc3982a88..3a2a0c1be 100644 --- a/extensions/web/internal.d.ts +++ b/extensions/web/internal.d.ts @@ -73,13 +73,9 @@ declare namespace globalThis { }; declare var file: { - Blob: typeof Blob & { - [globalThis.__bootstrap.file._byteSequence]: Uint8Array; - }; - readonly _byteSequence: unique symbol; - File: typeof File & { - [globalThis.__bootstrap.file._byteSequence]: Uint8Array; - }; + getParts(blob: Blob): string[]; + Blob: typeof Blob; + File: typeof File; }; declare var streams: { |