valkyrie-api-types/gateway/common.ts
2024-09-12 18:45:44 +12:00

8 lines
No EOL
207 B
TypeScript

/**
* https://discord.com/developers/docs/topics/gateway#connecting-gateway-url-query-string-params
*/
export interface GatewayURLQuery {
v: string;
encoding: 'json' | 'etf';
compress?: 'zlib-stream';
}