summary refs log tree commit diff
path: root/dist/models/Guild.d.ts
diff options
context:
space:
mode:
authorxnacly <matteogropp@gmail.com>2021-04-08 15:56:11 +0200
committerxnacly <matteogropp@gmail.com>2021-04-08 15:56:11 +0200
commitf01fe1ba3ac22d33ecf61659d1f65c5ac1ba4e17 (patch)
tree1a3361f31dbbf700efb84513c95388cfbfb2e58f /dist/models/Guild.d.ts
parentadded hasThrow (diff)
parent:bug: move dev dependencies to normal (diff)
downloadserver-f01fe1ba3ac22d33ecf61659d1f65c5ac1ba4e17.tar.xz
Merge branch 'main' of https://github.com/fosscord/fosscord-server-util
Diffstat (limited to 'dist/models/Guild.d.ts')
-rw-r--r--dist/models/Guild.d.ts44
1 files changed, 0 insertions, 44 deletions
diff --git a/dist/models/Guild.d.ts b/dist/models/Guild.d.ts
deleted file mode 100644

index 7ea96716..00000000 --- a/dist/models/Guild.d.ts +++ /dev/null
@@ -1,44 +0,0 @@ -/// <reference path="../util/MongoBigInt.d.ts" /> -import { Schema, Document } from "mongoose"; -export interface GuildDocument extends Document, Guild { - id: bigint; -} -export interface Guild { - id: bigint; - afk_channel_id?: bigint; - afk_timeout?: number; - application_id?: bigint; - banner?: string; - default_message_notifications?: number; - description?: string; - discovery_splash?: string; - explicit_content_filter?: number; - features: string[]; - icon?: string; - large?: boolean; - max_members?: number; - max_presences?: number; - max_video_channel_users?: number; - member_count?: number; - presence_count?: number; - mfa_level?: number; - name: string; - owner_id: bigint; - preferred_locale?: string; - premium_subscription_count?: number; - premium_tier?: number; - public_updates_channel_id?: bigint; - region?: string; - rules_channel_id?: bigint; - splash?: string; - system_channel_flags?: number; - system_channel_id?: bigint; - unavailable?: boolean; - vanity_url_code?: string; - verification_level?: number; - welcome_screen: []; - widget_channel_id?: bigint; - widget_enabled?: boolean; -} -export declare const GuildSchema: Schema<Document<any>, import("mongoose").Model<Document<any>>, undefined>; -export declare const GuildModel: import("mongoose").Model<GuildDocument>;