From 5a1943cd9560466a5922bd3cd79cca5c9f378561 Mon Sep 17 00:00:00 2001 From: Leo Kettmeir Date: Tue, 24 Sep 2024 07:04:52 -0700 Subject: fix: better error for Deno.UnsafeWindowSurface, correct HttpClient name, cleanup unused code (#25833) --- cli/main.rs | 7 +++++++ cli/tsc/dts/lib.deno.ns.d.ts | 4 +++- 2 files changed, 10 insertions(+), 1 deletion(-) (limited to 'cli') diff --git a/cli/main.rs b/cli/main.rs index 84c3704ca..c0eccab5d 100644 --- a/cli/main.rs +++ b/cli/main.rs @@ -385,6 +385,13 @@ fn get_suggestions_for_terminal_errors(e: &JsError) -> Vec { FixSuggestion::info("window global is not available in Deno 2."), FixSuggestion::hint("Replace `window` with `globalThis`."), ]; + } else if msg.contains("UnsafeWindowSurface is not a constructor") { + return vec![ + FixSuggestion::info("Deno.UnsafeWindowSurface is an unstable API."), + FixSuggestion::hint( + "Run again with `--unstable-webgpu` flag to enable this API.", + ), + ]; } } diff --git a/cli/tsc/dts/lib.deno.ns.d.ts b/cli/tsc/dts/lib.deno.ns.d.ts index 3cca95cdf..36592e10d 100644 --- a/cli/tsc/dts/lib.deno.ns.d.ts +++ b/cli/tsc/dts/lib.deno.ns.d.ts @@ -6041,9 +6041,11 @@ declare namespace Deno { * * @category Fetch */ - export interface HttpClient extends Disposable { + export class HttpClient implements Disposable { /** Close the HTTP client. */ close(): void; + + [Symbol.dispose](): void; } /** -- cgit v1.2.3