summaryrefslogtreecommitdiff
path: root/op_crates/fetch/lib.deno_fetch.d.ts
diff options
context:
space:
mode:
authorLuca Casonato <lucacasonato@yahoo.com>2021-01-30 19:22:24 +0100
committerGitHub <noreply@github.com>2021-01-30 19:22:24 +0100
commitfa975a9baee4c7489ad743be72b97372b616453a (patch)
treee5ee1456bf653968366f988cd00ffccb754d77dd /op_crates/fetch/lib.deno_fetch.d.ts
parentef46bc88bd48371d10ef59c99c8c113632ea7d97 (diff)
refactor: rewrite Blob implementation (#9309)
Co-authored-by: Kitson Kelly <me@kitsonkelly.com>
Diffstat (limited to 'op_crates/fetch/lib.deno_fetch.d.ts')
-rw-r--r--op_crates/fetch/lib.deno_fetch.d.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/op_crates/fetch/lib.deno_fetch.d.ts b/op_crates/fetch/lib.deno_fetch.d.ts
index f18dbe359..7d06fe691 100644
--- a/op_crates/fetch/lib.deno_fetch.d.ts
+++ b/op_crates/fetch/lib.deno_fetch.d.ts
@@ -291,7 +291,7 @@ type BlobPart = BufferSource | Blob | string;
interface BlobPropertyBag {
type?: string;
- ending?: "transparent" | "native";
+ endings?: "transparent" | "native";
}
/** A file-like object of immutable, raw data. Blobs represent data that isn't necessarily in a JavaScript-native format. The File interface is based on Blob, inheriting blob functionality and expanding it to support files on the user's system. */