diff options
author | Leo Kettmeir <crowlkats@toaxl.com> | 2022-01-05 17:41:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-05 17:41:44 +0100 |
commit | c40419b55beda0f69c5d59c7eded369c6af66f0e (patch) | |
tree | 7423528ff8f7223595a15ef2771c8f99f9e618cb /cli/dts/lib.deno.unstable.d.ts | |
parent | c74eb7a889322e88173cb044a670602d124fcc67 (diff) |
feat(ext/websocket): add header support to WebSocketStream (#11887)
Diffstat (limited to 'cli/dts/lib.deno.unstable.d.ts')
-rw-r--r-- | cli/dts/lib.deno.unstable.d.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/dts/lib.deno.unstable.d.ts b/cli/dts/lib.deno.unstable.d.ts index 6b7755ee5..442f5d7d4 100644 --- a/cli/dts/lib.deno.unstable.d.ts +++ b/cli/dts/lib.deno.unstable.d.ts @@ -1172,6 +1172,7 @@ declare interface WorkerOptions { declare interface WebSocketStreamOptions { protocols?: string[]; signal?: AbortSignal; + headers?: HeadersInit; } declare interface WebSocketConnection { |