aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Ciro Spaciari <ciro.spaciari@gmail.com> 2023-02-28 21:56:12 -0300
committerGravatar GitHub <noreply@github.com> 2023-02-28 16:56:12 -0800
commite512be8c18e2933febec00f69bc91f4632c6d12d (patch)
treec89072d28c1347e0bbdbf8a3d7ab644b0d01bcc5
parentec20fae57f96a835562b154730957ecc4015ba31 (diff)
downloadbun-e512be8c18e2933febec00f69bc91f4632c6d12d.tar.gz
bun-e512be8c18e2933febec00f69bc91f4632c6d12d.tar.zst
bun-e512be8c18e2933febec00f69bc91f4632c6d12d.zip
just some comments fix (#2237)
-rw-r--r--packages/bun-types/globals.d.ts6
1 files changed, 2 insertions, 4 deletions
diff --git a/packages/bun-types/globals.d.ts b/packages/bun-types/globals.d.ts
index 3e677b458..72c8495dc 100644
--- a/packages/bun-types/globals.d.ts
+++ b/packages/bun-types/globals.d.ts
@@ -842,7 +842,7 @@ interface RequestInit {
/**
* A string indicating how the request will interact with the browser's cache to set request's cache.
*
- * Note: as of Bun v0.0.74, this is not implemented yet.
+ * Note: as of Bun v0.5.7, this is not implemented yet.
*/
cache?: RequestCache;
/**
@@ -856,7 +856,7 @@ interface RequestInit {
/**
* A cryptographic hash of the resource to be fetched by request. Sets request's integrity.
*
- * Note: as of Bun v0.0.74, this is not implemented yet.
+ * Note: as of Bun v0.5.7, this is not implemented yet.
*/
integrity?: string;
/**
@@ -889,8 +889,6 @@ interface RequestInit {
referrerPolicy?: ReferrerPolicy;
/**
* An AbortSignal to set request's signal.
- *
- * Note: as of Bun v0.0.74, this is not implemented yet.
*/
signal?: AbortSignal | null;
/**