summary refs log tree commit diff
path: root/dist/server-util/src/models/User.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'dist/server-util/src/models/User.d.ts')
-rw-r--r--dist/server-util/src/models/User.d.ts61
1 files changed, 0 insertions, 61 deletions
diff --git a/dist/server-util/src/models/User.d.ts b/dist/server-util/src/models/User.d.ts
deleted file mode 100644
index 5e86a8a3..00000000
--- a/dist/server-util/src/models/User.d.ts
+++ /dev/null
@@ -1,61 +0,0 @@
-export interface User {
-    id: bigint;
-    username: string;
-    discriminator: string;
-    avatar: string | null;
-    bot: boolean;
-    system: boolean;
-    mfa_enabled: boolean;
-    created_at: number;
-    verified: boolean;
-    email: string;
-    flags: bigint;
-    hash: string;
-    valid_tokens_since: number;
-    user_settings: UserSettings;
-    guilds: bigint[];
-}
-export interface UserSettings {
-    afk_timeout: number;
-    allow_accessibility_detection: boolean;
-    animate_emoji: boolean;
-    animate_stickers: number;
-    contact_sync_enabled: boolean;
-    convert_emoticons: boolean;
-    custom_status: {
-        emoji_id: bigint | null;
-        emoji_name: string | null;
-        expires_at: number | null;
-        text: string | null;
-    };
-    default_guilds_restricted: boolean;
-    detect_platform_accounts: boolean;
-    developer_mode: boolean;
-    disable_games_tab: boolean;
-    enable_tts_command: boolean;
-    explicit_content_filter: number;
-    friend_source_flags: {
-        all: boolean;
-    };
-    gif_auto_play: boolean;
-    guild_folders: {
-        color: number;
-        guild_ids: bigint[];
-        id: number;
-        name: string;
-    }[];
-    guild_positions: bigint[];
-    inline_attachment_media: boolean;
-    inline_embed_media: boolean;
-    locale: string;
-    message_display_compact: boolean;
-    native_phone_integration_enabled: boolean;
-    render_embeds: boolean;
-    render_reactions: boolean;
-    restricted_guilds: bigint[];
-    show_current_game: boolean;
-    status: "online" | "offline" | "dnd" | "idle";
-    stream_notifications_enabled: boolean;
-    theme: "dark" | "white";
-    timezone_offset: number;
-}