summaryrefslogtreecommitdiff
path: root/cli/tsc
diff options
context:
space:
mode:
authorKitson Kelly <me@kitsonkelly.com>2024-01-07 00:42:14 +1100
committerGitHub <noreply@github.com>2024-01-06 14:42:14 +0100
commit49d8320e45df8695696de5127659f8dacddb9e2a (patch)
tree35fcf0aa2b36defde72ca4df1f5811acfe1f4dc7 /cli/tsc
parentd1706c2ac99eb82a937dff1c6a4c861aa24b1210 (diff)
fix(kv): improve .listenQueue types (#21781)
Fixes: #21780
Diffstat (limited to 'cli/tsc')
-rw-r--r--cli/tsc/dts/lib.deno.unstable.d.ts5
1 files changed, 2 insertions, 3 deletions
diff --git a/cli/tsc/dts/lib.deno.unstable.d.ts b/cli/tsc/dts/lib.deno.unstable.d.ts
index 2b523e8fd..8962acf1a 100644
--- a/cli/tsc/dts/lib.deno.unstable.d.ts
+++ b/cli/tsc/dts/lib.deno.unstable.d.ts
@@ -2043,9 +2043,8 @@ declare namespace Deno {
* });
* ```
*/
- listenQueue(
- handler: (value: unknown) => Promise<void> | void,
- ): Promise<void>;
+ // deno-lint-ignore no-explicit-any
+ listenQueue(handler: (value: any) => Promise<void> | void): Promise<void>;
/**
* Create a new {@linkcode Deno.AtomicOperation} object which can be used to