diff options
author | 2023-06-09 17:05:34 -0700 | |
---|---|---|
committer | 2023-06-09 17:05:34 -0700 | |
commit | ce9340cfa6c6f08091e748aa51793d63fa64ef73 (patch) | |
tree | e4dee55335f9280529c4d7f32d27383b47b3d9b4 | |
parent | e75f192da5e361015591d3d96e08a4db870bde64 (diff) | |
download | bun-ce9340cfa6c6f08091e748aa51793d63fa64ef73.tar.gz bun-ce9340cfa6c6f08091e748aa51793d63fa64ef73.tar.zst bun-ce9340cfa6c6f08091e748aa51793d63fa64ef73.zip |
Fix type-tests
-rw-r--r-- | packages/bun-types/http.d.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/bun-types/http.d.ts b/packages/bun-types/http.d.ts index 30571b4b6..710fea4f4 100644 --- a/packages/bun-types/http.d.ts +++ b/packages/bun-types/http.d.ts @@ -987,7 +987,7 @@ declare module "http" { * in the response to be dropped and the socket to be destroyed. * @deprecated Since v14.1.0,v13.14.0 - Use `destroy` instead. */ - // abort(): void; + abort(): void; /** * Once a socket is assigned to this request and is connected `socket.setTimeout()` will be called. * @param timeout Milliseconds before a request times out. |