summary refs log tree commit diff
path: root/dist/Schema/Identify.d.ts
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-02-14 00:30:07 +0100
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-02-14 00:30:07 +0100
commit8e84d39c7f2531e81eed3a9d01bf4030b19a2c88 (patch)
treeeb89f194780f903388cf968e9073cab4aed75ccc /dist/Schema/Identify.d.ts
parent:art: Channel + Member + Message + Role in separate collection (diff)
downloadserver-8e84d39c7f2531e81eed3a9d01bf4030b19a2c88.tar.xz
:sparkles: getPermission util function
Diffstat (limited to 'dist/Schema/Identify.d.ts')
-rw-r--r--dist/Schema/Identify.d.ts68
1 files changed, 0 insertions, 68 deletions
diff --git a/dist/Schema/Identify.d.ts b/dist/Schema/Identify.d.ts
deleted file mode 100644

index 750f2871..00000000 --- a/dist/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; -}