blob: a4357d5c5e40ea1b05e7d04ba7127072333651e1 (
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: 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>;
|