alclient
Version:
A node client for interacting with Adventure Land - The Code MMORPG. This package extends the functionality of 'alclient' by managing a mongo database.
10 lines (9 loc) • 312 B
TypeScript
import type { Document, Model } from "mongoose";
import type { BankInfo } from "../../definitions/adventureland.js";
export interface IBank extends BankInfo {
lastUpdated?: number;
owner: string;
}
export interface IBankDocument extends IBank, Document {
}
export type IBankModel = Model<IBankDocument>;