1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-11-11 13:14:06 +01:00
server/dist/models/Ban.d.ts

12 lines
411 B
TypeScript
Raw Normal View History

2021-02-19 15:34:52 +01:00
/// <reference path="../util/MongoBigInt.d.ts" />
import { Schema, Document } from "mongoose";
export interface Ban extends Document {
user_id: bigint;
guild_id: bigint;
2021-02-21 19:09:27 +01:00
executor_id: bigint;
2021-02-19 15:34:52 +01:00
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>;