Skip to content

Commit 291b59e

Browse files
authored
bun-types: small fixes (#12794)
1 parent 035f97b commit 291b59e

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

packages/bun-types/bun.d.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4448,15 +4448,18 @@ declare module "bun" {
44484448
hostname: string;
44494449
port: number;
44504450
tls?: TLSOptions;
4451+
exclusive?: boolean;
44514452
}
44524453

44534454
interface TCPSocketConnectOptions<Data = undefined> extends SocketOptions<Data> {
44544455
hostname: string;
44554456
port: number;
44564457
tls?: boolean;
4458+
exclusive?: boolean;
44574459
}
44584460

44594461
interface UnixSocketOptions<Data = undefined> extends SocketOptions<Data> {
4462+
tls?: TLSOptions;
44604463
unix: string;
44614464
}
44624465

0 commit comments

Comments
 (0)