UNPKG

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
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>;