From 8e84d39c7f2531e81eed3a9d01bf4030b19a2c88 Mon Sep 17 00:00:00 2001 From: Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> Date: Sun, 14 Feb 2021 00:30:07 +0100 Subject: :sparkles: getPermission util function --- dist/gateway/src/schema/Identify.d.ts | 68 ----------------------------------- 1 file changed, 68 deletions(-) delete mode 100644 dist/gateway/src/schema/Identify.d.ts (limited to 'dist/gateway/src/schema/Identify.d.ts') 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; -} -- cgit 1.5.1