aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--packages/bun-types/globals.d.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/bun-types/globals.d.ts b/packages/bun-types/globals.d.ts
index f51de85b0..d43ee78bd 100644
--- a/packages/bun-types/globals.d.ts
+++ b/packages/bun-types/globals.d.ts
@@ -1,4 +1,4 @@
-import * as tls from 'node:tls';
+// import * as tls from 'node:tls';
/**
* "blob" is not supported yet
@@ -1309,7 +1309,7 @@ interface FetchRequestInit extends RequestInit {
*/
tls?: {
rejectUnauthorized?: boolean | undefined; // Defaults to true
- checkServerIdentity?: typeof tls.checkServerIdentity | undefined;
+ checkServerIdentity?: any | undefined; // TODO: change `any` to `checkServerIdentity`
};
}