Handle permessage-deflate on sockets

With this the extension host is working again.
This commit is contained in:
Asher
2021-03-02 16:42:25 -06:00
parent 150138e04b
commit 4d3d1b844d
7 changed files with 30 additions and 10 deletions

View File

@@ -19,6 +19,7 @@ export type Query = { [key: string]: string | string[] | undefined | Query | Que
export interface SocketMessage {
type: 'socket';
query: Query;
permessageDeflate: boolean;
}
export interface CliMessage {