swc/crates/swc_bundler/tests/.cache/deno/5ba18d2b803129ce01cafa5736a702d21b1556c9.ts
2021-11-09 20:42:49 +09:00

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;
}