summaryrefslogtreecommitdiff
path: root/cli/tsc
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tsc')
-rw-r--r--cli/tsc/dts/lib.deno.ns.d.ts6
-rw-r--r--cli/tsc/mod.rs2
2 files changed, 5 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,
diff --git a/cli/tsc/mod.rs b/cli/tsc/mod.rs
index 8f8bed20a..c9f726ca2 100644
--- a/cli/tsc/mod.rs
+++ b/cli/tsc/mod.rs
@@ -664,6 +664,7 @@ fn op_load_inner(
&mut is_cjs,
)?))
}
+ Module::Wasm(_) => todo!("@dsherret"),
}
} else if let Some(npm) = state
.maybe_npm
@@ -928,6 +929,7 @@ fn resolve_graph_specifier_types(
}))
}
Some(Module::Node(_)) | None => Ok(None),
+ Some(Module::Wasm(_)) => todo!("@dsherret"),
}
}