mirror of
https://github.com/spacebarchat/server.git
synced 2024-11-11 13:14:06 +01:00
12 lines
411 B
TypeScript
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>;
|