bun-types 1.1.37-canary.20241120T140606 → 1.1.37-canary.20241122T140626
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bun.d.ts +5 -0
- package/package.json +1 -1
package/bun.d.ts
CHANGED
|
@@ -4732,6 +4732,11 @@ declare module "bun" {
|
|
|
4732
4732
|
unix: string;
|
|
4733
4733
|
}
|
|
4734
4734
|
|
|
4735
|
+
interface FdSocketOptions<Data = undefined> extends SocketOptions<Data> {
|
|
4736
|
+
tls?: TLSOptions;
|
|
4737
|
+
fd: number;
|
|
4738
|
+
}
|
|
4739
|
+
|
|
4735
4740
|
/**
|
|
4736
4741
|
* Create a TCP client that connects to a server
|
|
4737
4742
|
*
|
package/package.json
CHANGED