mirror of
https://github.com/swc-project/swc.git
synced 2024-12-22 13:11:31 +03:00
13 lines
316 B
TypeScript
13 lines
316 B
TypeScript
|
// Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/types/gateway/resume.ts
|
||
|
|
||
|
|
||
|
/** https://discord.com/developers/docs/topics/gateway#resume */
|
||
|
export interface Resume {
|
||
|
/** Session token */
|
||
|
token: string;
|
||
|
/** Session id */
|
||
|
sessionId: string;
|
||
|
/** Last sequence number received */
|
||
|
seq: number;
|
||
|
}
|