bun-types 1.1.34-canary.20241031T140527 → 1.1.34-canary.20241101T140549
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
|
@@ -4547,6 +4547,11 @@ declare module "bun" {
|
|
|
4547
4547
|
* @param [size=16384] The maximum TLS fragment size. The maximum value is `16384`.
|
|
4548
4548
|
*/
|
|
4549
4549
|
setMaxSendFragment(size: number): boolean;
|
|
4550
|
+
|
|
4551
|
+
/**
|
|
4552
|
+
* The number of bytes written to the socket.
|
|
4553
|
+
*/
|
|
4554
|
+
readonly bytesWritten: number;
|
|
4550
4555
|
}
|
|
4551
4556
|
|
|
4552
4557
|
interface SocketListener<Data = undefined> extends Disposable {
|
package/package.json
CHANGED