Skip to content

Commit

Permalink
Change unknown to any
Browse files Browse the repository at this point in the history
Signed-off-by: Marcos Candeia <[email protected]>
  • Loading branch information
mcandeia committed Oct 19, 2024
1 parent 550b5da commit f905bbd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/actors/proxy.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// deno-lint-ignore-file no-explicit-any
import { create, createHttpInvoker, type Promisify } from "./proxyutil.ts";
import type { Actor, ActorConstructor } from "./runtime.ts";

Expand All @@ -8,7 +9,7 @@ export interface ActorsServer {

export interface ActorsOptions {
server?: ActorsServer;
errorHandling?: Record<string, new (...args: unknown[]) => Error>;
errorHandling?: Record<string, new (...args: any[]) => Error>;
}
/**
* utilities to create and manage actors.
Expand Down

0 comments on commit f905bbd

Please sign in to comment.