Skip to content

Commit 80039c4

Browse files
committed
fix(resources): Handler now has any.
1 parent 755c928 commit 80039c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/resources/AppProvider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { Resource } from './Resource';
22
import { Service } from './Service';
33

4-
export type Handler = (...params: unknown[]) => void;
4+
export type Handler = (...params: any[]) => void;
55

66
export interface AppProvider {
77
use: (h: Handler) => void;

0 commit comments

Comments
 (0)