bun-types 1.1.30-canary.20240923T140541 → 1.1.30-canary.20240925T140521
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 +1 -1
- package/package.json +1 -1
package/bun.d.ts
CHANGED
|
@@ -2775,7 +2775,7 @@ declare module "bun" {
|
|
|
2775
2775
|
* @param closeActiveConnections Immediately terminate in-flight requests, websockets, and stop accepting new connections.
|
|
2776
2776
|
* @default false
|
|
2777
2777
|
*/
|
|
2778
|
-
stop(closeActiveConnections?: boolean): void
|
|
2778
|
+
stop(closeActiveConnections?: boolean): Promise<void>;
|
|
2779
2779
|
|
|
2780
2780
|
/**
|
|
2781
2781
|
* Update the `fetch` and `error` handlers without restarting the server.
|
package/package.json
CHANGED