There was an error while loading. Please reload this page.
1 parent 035f97b commit 291b59eCopy full SHA for 291b59e
1 file changed
packages/bun-types/bun.d.ts
@@ -4448,15 +4448,18 @@ declare module "bun" {
4448
hostname: string;
4449
port: number;
4450
tls?: TLSOptions;
4451
+ exclusive?: boolean;
4452
}
4453
4454
interface TCPSocketConnectOptions<Data = undefined> extends SocketOptions<Data> {
4455
4456
4457
tls?: boolean;
4458
4459
4460
4461
interface UnixSocketOptions<Data = undefined> extends SocketOptions<Data> {
4462
+ tls?: TLSOptions;
4463
unix: string;
4464
4465
0 commit comments