mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 04:32:01 +03:00
29 lines
725 B
TypeScript
29 lines
725 B
TypeScript
// Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/types/discordeno/debug_arg.ts
|
|
|
|
|
|
export interface DebugArg {
|
|
/** Red is for errors or urgent issues. Yellow is for warnings/alerts. Green is for actions being taken. Blue is for */
|
|
type?:
|
|
| "gatewayIdentify"
|
|
| "error"
|
|
| "globallyRateLimited"
|
|
| "requestCreate"
|
|
| "requestSuccess"
|
|
| "requestFetch"
|
|
| "requestFetched"
|
|
| "requestMembersProcessing"
|
|
| "gatewayHeartbeat"
|
|
| "gatewayHeartbeatStopped"
|
|
| "shardCreate"
|
|
| "gatewayInvalidSession"
|
|
| "gatewayReconnect"
|
|
| "gatewayResume"
|
|
| "gatewayResumed"
|
|
| "wsClose"
|
|
| "wsError"
|
|
| "wsReconnect"
|
|
| "missingShard"
|
|
| "loop";
|
|
data: unknown;
|
|
}
|