diff options
author | Luca Casonato <hello@lcas.dev> | 2023-10-27 14:35:31 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-27 14:35:31 +0200 |
commit | 9a97edce05ba3719ae3ace41df2b49e9168c1fa9 (patch) | |
tree | 56db9500942ede6f4d939de3c6d4e67533c3eb3a /cli/tsc/dts/lib.deno.unstable.d.ts | |
parent | 33565e16ca0f9d2d04e2c43b7f6949106ba8cf18 (diff) |
feat: rename Deno.Server to Deno.HttpServer (#20842)
Keeps the old name around for backwards compat.
Closes #20840
Diffstat (limited to 'cli/tsc/dts/lib.deno.unstable.d.ts')
-rw-r--r-- | cli/tsc/dts/lib.deno.unstable.d.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tsc/dts/lib.deno.unstable.d.ts b/cli/tsc/dts/lib.deno.unstable.d.ts index 76e8ef49b..56188f3b8 100644 --- a/cli/tsc/dts/lib.deno.unstable.d.ts +++ b/cli/tsc/dts/lib.deno.unstable.d.ts @@ -1941,7 +1941,7 @@ declare namespace Deno { * * @category HTTP Server */ - export interface Server { + export interface HttpServer { /** Gracefully close the server. No more new connections will be accepted, * while pending requests will be allowed to finish. */ |