mirror of
https://github.com/swc-project/swc.git
synced 2024-12-20 20:22:26 +03:00
15 lines
465 B
TypeScript
15 lines
465 B
TypeScript
|
// Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/types/gateway/identify_connection_properties.ts
|
||
|
|
||
|
|
||
|
export interface IdentifyConnectionProperties {
|
||
|
/** Operating system */
|
||
|
$os: string;
|
||
|
/** Library name */
|
||
|
$browser: string;
|
||
|
/** Library name */
|
||
|
$device: string;
|
||
|
}
|
||
|
|
||
|
/** https://discord.com/developers/docs/topics/gateway#identify-identify-connection-properties */
|
||
|
export type DiscordIdentifyConnectionProperties = IdentifyConnectionProperties;
|