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 3d0f42c commit a8c06f5Copy full SHA for a8c06f5
packages/engine.io-parser/lib/commons.ts
@@ -32,7 +32,11 @@ export type RawData = any;
32
33
export interface Packet {
34
type: PacketType;
35
- options?: { compress: boolean, wsPreEncoded?: string, wsPreEncodedFrame?: boolean };
+ options?: {
36
+ compress: boolean;
37
+ wsPreEncoded?: string;
38
+ wsPreEncodedFrame?: boolean;
39
+ };
40
data?: RawData;
41
}
42
0 commit comments