Skip to content

Commit

Permalink
Update match.d.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
xan105 committed Apr 9, 2024
1 parent cf57a17 commit 7eb616f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion types/match.d.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export function match(fn: unknown, args: unknown[], cb?: { Ok?: function, Err?: function }): Promise<unknown> | unknown;
export function match(fn: unknown, args: unknown[], cb?: { Ok?: (v: unknown) => unknown, Err?: () => void }): Promise<unknown> | unknown;

0 comments on commit 7eb616f

Please sign in to comment.