summaryrefslogtreecommitdiff
path: root/cli/js/web/blob.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/js/web/blob.ts')
-rw-r--r--cli/js/web/blob.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/js/web/blob.ts b/cli/js/web/blob.ts
index ab6074b91..8f9615933 100644
--- a/cli/js/web/blob.ts
+++ b/cli/js/web/blob.ts
@@ -103,7 +103,7 @@ function toUint8Arrays(
function processBlobParts(
blobParts: BlobPart[],
- options: domTypes.BlobPropertyBag
+ options: BlobPropertyBag
): Uint8Array {
const normalizeLineEndingsToNative = options.ending === "native";
// ArrayBuffer.transfer is not yet implemented in V8, so we just have to
@@ -171,7 +171,7 @@ export class DenoBlob implements Blob {
readonly size: number = 0;
readonly type: string = "";
- constructor(blobParts?: BlobPart[], options?: domTypes.BlobPropertyBag) {
+ constructor(blobParts?: BlobPart[], options?: BlobPropertyBag) {
if (arguments.length === 0) {
this[bytesSymbol] = new Uint8Array();
return;