summaryrefslogtreecommitdiff
path: root/cli/dts/lib.deno.unstable.d.ts
diff options
context:
space:
mode:
authorLeo Kettmeir <crowlkats@toaxl.com>2022-01-05 17:41:44 +0100
committerGitHub <noreply@github.com>2022-01-05 17:41:44 +0100
commitc40419b55beda0f69c5d59c7eded369c6af66f0e (patch)
tree7423528ff8f7223595a15ef2771c8f99f9e618cb /cli/dts/lib.deno.unstable.d.ts
parentc74eb7a889322e88173cb044a670602d124fcc67 (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.ts1
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 {