From a44da1024dc39e2d2fef296fc1d4e5894090fce0 Mon Sep 17 00:00:00 2001 From: Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> Date: Sat, 13 Feb 2021 14:15:59 +0100 Subject: :zap: Config and database update --- dist/models/User.d.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'dist/models/User.d.ts') diff --git a/dist/models/User.d.ts b/dist/models/User.d.ts index c23c0118..81ae1fab 100644 --- a/dist/models/User.d.ts +++ b/dist/models/User.d.ts @@ -1,6 +1,8 @@ +/// import { Activity } from "./Activity"; import { ClientStatus, Status } from "./Status"; -export interface User { +import { Schema, Document } from "mongoose"; +export interface User extends Document { id: bigint; username: string; discriminator: string; @@ -99,3 +101,5 @@ export interface UserSettings { theme: "dark" | "white"; timezone_offset: number; } +export declare const UserSchema: Schema, import("mongoose").Model>, undefined>; +export declare const UserModel: import("mongoose").Model; -- cgit 1.5.1