diff options
author | Leo Kettmeir <crowlkats@toaxl.com> | 2024-09-24 07:04:52 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-24 07:04:52 -0700 |
commit | 5a1943cd9560466a5922bd3cd79cca5c9f378561 (patch) | |
tree | 8d73d135dc638a2d8d169bc93df8ddbccfedf945 /cli/tsc | |
parent | 3242550f5f0b33769a4e0a24a7dc96773647ca75 (diff) |
fix: better error for Deno.UnsafeWindowSurface, correct HttpClient name, cleanup unused code (#25833)
Diffstat (limited to 'cli/tsc')
-rw-r--r-- | cli/tsc/dts/lib.deno.ns.d.ts | 4 |
1 files changed, 3 insertions, 1 deletions
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; } /** |