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

8 lines
208 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';
}