diff options
author | Leo Kettmeir <crowlkats@toaxl.com> | 2023-10-11 07:31:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-11 07:31:05 +0200 |
commit | 8ba1242a0573121bb12ab3ad1e241956151a142f (patch) | |
tree | b613c378aa998679cab85c45f4746bb638a826b1 /cli/tsc | |
parent | 2215a3ea2e79dd579388872d6e12e6ee987e745b (diff) |
feat(WebSocketStream): rename connection to opened (#20878)
Diffstat (limited to 'cli/tsc')
-rw-r--r-- | cli/tsc/dts/lib.deno.unstable.d.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tsc/dts/lib.deno.unstable.d.ts b/cli/tsc/dts/lib.deno.unstable.d.ts index 782e8eba4..26bb78757 100644 --- a/cli/tsc/dts/lib.deno.unstable.d.ts +++ b/cli/tsc/dts/lib.deno.unstable.d.ts @@ -2198,7 +2198,7 @@ declare interface WebSocketCloseInfo { */ declare interface WebSocketStream { url: string; - connection: Promise<WebSocketConnection>; + opened: Promise<WebSocketConnection>; closed: Promise<WebSocketCloseInfo>; close(closeInfo?: WebSocketCloseInfo): void; } |