summary refs log tree commit diff
path: root/dist/models/Ban.d.ts
blob: ad3a39b7dfcd40f9c416e0625944f5ec811fb849 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
/// <reference path="../util/MongoBigInt.d.ts" />
import { Schema, Document } from "mongoose";
export interface Ban extends Document {
    user_id: string;
    guild_id: string;
    executor_id: string;
    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>;