We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6070c01 commit fbd3602Copy full SHA for fbd3602
packages/vite-plugin-monkey/src/client/types/log.ts
@@ -1,6 +1,6 @@
1
export interface GmLogType {
2
- (message: any): void;
+ (...data: any[]): void;
3
}
4
export interface GmAsyncLogType {
5
- (message: any): Promise<void> | void;
+ (...data: any[]): Promise<void> | void;
6
0 commit comments