spacebar/dist/models/Ban.d.ts
Intevel ツ 5aee359cf3 BanModel Update
I edited the ban scheme and added a new value
2021-02-21 12:24:02 +01:00

12 lines
411 B
TypeScript

/// <reference path="../util/MongoBigInt.d.ts" />
import { Schema, Document } from "mongoose";
export interface Ban extends Document {
user_id: bigint;
guild_id: bigint;
executor_id: BigInt;
ip: string;
reason?: string;
}
export declare const BanSchema: Schema<Document<any>, import("mongoose").Model<Document<any>>, undefined>;
export declare const BanModel: import("mongoose").Model<Ban>;