valkyrie-api-types/gateway/common.ts

8 lines
207 B
TypeScript
Raw Normal View History

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