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