summary refs log tree commit diff
path: root/dist/models/Guild.d.ts
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-04-14 15:01:27 +0200
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-04-14 15:01:27 +0200
commit9c62b43664f9808497cdaf5142ef071c4e01275d (patch)
treea2a8b0b0b72d2182229e332b158fd9310a1cb809 /dist/models/Guild.d.ts
parent:zap: export regex (diff)
parent:bug: fix Activity model (diff)
downloadserver-9c62b43664f9808497cdaf5142ef071c4e01275d.tar.xz
Merge branch 'main' of https://github.com/discord-open-source/discord-server-util into main
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>;