summaryrefslogtreecommitdiff
path: root/cli/tsc/dts/lib.deno.unstable.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tsc/dts/lib.deno.unstable.d.ts')
-rw-r--r--cli/tsc/dts/lib.deno.unstable.d.ts19
1 files changed, 0 insertions, 19 deletions
diff --git a/cli/tsc/dts/lib.deno.unstable.d.ts b/cli/tsc/dts/lib.deno.unstable.d.ts
index dc3bfcfc0..f169e0254 100644
--- a/cli/tsc/dts/lib.deno.unstable.d.ts
+++ b/cli/tsc/dts/lib.deno.unstable.d.ts
@@ -1518,25 +1518,6 @@ declare namespace Deno {
/** **UNSTABLE**: New API, yet to be vetted.
*
- * Allows "hijacking" the connection that the request is associated with.
- * This can be used to implement protocols that build on top of HTTP (eg.
- * {@linkcode WebSocket}).
- *
- * Unlike {@linkcode Deno.upgradeHttp} this function does not require that you
- * respond to the request with a {@linkcode Response} object. Instead this
- * function returns the underlying connection and first packet received
- * immediately, and then the caller is responsible for writing the response to
- * the connection.
- *
- * This method can only be called on requests originating the
- * {@linkcode Deno.serve} server.
- *
- * @category HTTP Server
- */
- export function upgradeHttpRaw(request: Request): [Deno.Conn, Uint8Array];
-
- /** **UNSTABLE**: New API, yet to be vetted.
- *
* Open a new {@linkcode Deno.Kv} connection to persist data.
*
* When a path is provided, the database will be persisted to disk at that