Skip to content

Commit 252c369

Browse files
committed
fix parameter type
1 parent e9fc7df commit 252c369

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class CSInterface extends CSInterfaceBase {
1616
*
1717
* @return {Promise<*>}
1818
*/
19-
evalScript(script: string, ...args: any): Promise<any>;
19+
evalScript(script: string, ...args: unknown[]): Promise<any>;
2020
evalScript(script: string, callback?: (result?: any) => void): Promise<any> {
2121
/**
2222
* @param {*} value

0 commit comments

Comments
 (0)