diff options
author | Leo Kettmeir <crowlkats@toaxl.com> | 2024-11-19 08:56:04 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-19 08:56:04 -0800 |
commit | 628816448ea45807762fd8eb0c59302c9f2aac9a (patch) | |
tree | 909d67aa20b063bf74b9f3e1d31129e6d04d3a4d /cli/tsc/dts | |
parent | 186b52731c6bb326c4d32905c5e732d082e83465 (diff) |
refactor: update deno_doc, use prismjs, remove internal reference html generation logic (#26885)
Diffstat (limited to 'cli/tsc/dts')
-rw-r--r-- | cli/tsc/dts/lib.deno.ns.d.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cli/tsc/dts/lib.deno.ns.d.ts b/cli/tsc/dts/lib.deno.ns.d.ts index 8179e4223..d9f66f11a 100644 --- a/cli/tsc/dts/lib.deno.ns.d.ts +++ b/cli/tsc/dts/lib.deno.ns.d.ts @@ -4535,7 +4535,7 @@ declare namespace Deno { /** The object that is returned from a {@linkcode Deno.upgradeWebSocket} * request. * - * @category Web Sockets */ + * @category WebSockets */ export interface WebSocketUpgrade { /** The response object that represents the HTTP response to the client, * which should be used to the {@linkcode RequestEvent} `.respondWith()` for @@ -4549,7 +4549,7 @@ declare namespace Deno { /** Options which can be set when performing a * {@linkcode Deno.upgradeWebSocket} upgrade of a {@linkcode Request} * - * @category Web Sockets */ + * @category WebSockets */ export interface UpgradeWebSocketOptions { /** Sets the `.protocol` property on the client side web socket to the * value provided here, which should be one of the strings specified in the @@ -4597,7 +4597,7 @@ declare namespace Deno { * This operation does not yet consume the request or open the websocket. This * only happens once the returned response has been passed to `respondWith()`. * - * @category Web Sockets + * @category WebSockets */ export function upgradeWebSocket( request: Request, |