summary refs log tree commit diff
path: root/dist/gateway/src/schema/Identify.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'dist/gateway/src/schema/Identify.d.ts')
-rw-r--r--dist/gateway/src/schema/Identify.d.ts68
1 files changed, 0 insertions, 68 deletions
diff --git a/dist/gateway/src/schema/Identify.d.ts b/dist/gateway/src/schema/Identify.d.ts
deleted file mode 100644

index 750f2871..00000000 --- a/dist/gateway/src/schema/Identify.d.ts +++ /dev/null
@@ -1,68 +0,0 @@ -import { ActivitySchema } from "./Activity"; -export declare const IdentifySchema: { - token: StringConstructor; - intents: BigIntConstructor; - $properties: { - $$os: StringConstructor; - $$browser: StringConstructor; - $$device: StringConstructor; - }; - $presence: { - afk: BooleanConstructor; - status: StringConstructor; - $activities: { - name: StringConstructor; - type: NumberConstructor; - $url: StringConstructor; - $created_at: NumberConstructor; - $timestamps: { - start: NumberConstructor; - end: NumberConstructor; - }; - $application_id: BigIntConstructor; - $details: StringConstructor; - $State: StringConstructor; - $emoji: { - name: StringConstructor; - $id: BigIntConstructor; - animated: BooleanConstructor; - }; - $party: { - $id: StringConstructor; - $size: NumberConstructor[]; - }; - $assets: { - $large_image: StringConstructor; - $large_text: StringConstructor; - $small_image: StringConstructor; - $small_text: StringConstructor; - }; - $secrets: { - $join: StringConstructor; - $spectate: StringConstructor; - $match: StringConstructor; - }; - $instance: BooleanConstructor; - flags: BigIntConstructor; - }[]; - $since: NumberConstructor; - }; - $compress: BooleanConstructor; - $large_threshold: NumberConstructor; - $shard: NumberConstructor[]; - $guild_subscriptions: BooleanConstructor; -}; -export interface IdentifySchema { - token: string; - properties: { - $$os: string; - $$browser: string; - $$device: string; - }; - intents: bigint; - presence?: ActivitySchema; - compress?: boolean; - large_threshold?: number; - shard?: [number]; - guild_subscriptions?: boolean; -}