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-06 23:25:56 +0200
committerGitHub <noreply@github.com>2021-04-06 23:25:56 +0200
commite8c79c8e48b1a69fe7662e9b3bc8f5366d328475 (patch)
treeb4d69ea9692670e4338bf23db5fd0312b5cd6c17 /dist/models/Guild.d.ts
parent:bug: fix Message Model (diff)
parent:arrow_up: update mongodb (diff)
downloadserver-e8c79c8e48b1a69fe7662e9b3bc8f5366d328475.tar.xz
Merge pull request #2 from afeuerstein/main
Merge fosscord/fosscord-server-util/ with afeuerstein/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 d7d94cb2..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: string; -} -export interface Guild { - id: string; - afk_channel_id?: string; - afk_timeout?: number; - application_id?: string; - 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: string; - preferred_locale?: string; - premium_subscription_count?: number; - premium_tier?: number; - public_updates_channel_id?: string; - region?: string; - rules_channel_id?: string; - splash?: string; - system_channel_flags?: number; - system_channel_id?: string; - unavailable?: boolean; - vanity_url_code?: string; - verification_level?: number; - welcome_screen: []; - widget_channel_id?: string; - widget_enabled?: boolean; -} -export declare const GuildSchema: Schema<Document<any>, import("mongoose").Model<Document<any>>, undefined>; -export declare const GuildModel: import("mongoose").Model<GuildDocument>;