Skip to content

Commit 6e24c6e

Browse files
committed
fix: use any instead of string
1 parent c1ad410 commit 6e24c6e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export function createLogger(
1313
return logger;
1414
}
1515

16-
export function log(...args: string[]) {
16+
export function log(...args: any[]) {
1717
createLogger().log(...args);
1818
}
1919

0 commit comments

Comments
 (0)