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 eeaa775 commit 85c4106Copy full SHA for 85c4106
lib/v8.d.ts
@@ -138,7 +138,7 @@ declare class CSEvent {
138
/**
139
* Event-specific data.
140
*/
141
- data: string;
+ data?: any;
142
143
* @param type The name of the event type.
144
* @param scope The scope of event, can be "GLOBAL" or "APPLICATION".
src/v8.ts
@@ -127,7 +127,7 @@ class CSEvent {
127
128
129
130
- public data: string = "";
+ public data?: any = "";
131
132
133
0 commit comments