mirror of
https://github.com/swc-project/swc.git
synced 2024-12-22 05:01:42 +03:00
13 lines
417 B
TypeScript
13 lines
417 B
TypeScript
// Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/types/gateway/gateway_url_params.ts
|
|
|
|
|
|
/** https://discord.com/developers/docs/topics/gateway#connecting-gateway-url-params */
|
|
export interface GatewayURLParams {
|
|
/** Gateway version to use */
|
|
v: string;
|
|
/** The encoding of received gateway packets */
|
|
encoding: string;
|
|
/** The (optional) compression of gateway packets */
|
|
compress?: string;
|
|
}
|