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.
8 lines (7 loc) • 305 B
TypeScript
import pkg from "mongoose";
import type { IEntityDocument } from "./entities.types.js";
export declare const EntityModel: pkg.Model<IEntityDocument, {}, {}, {}, pkg.Document<unknown, {}, IEntityDocument, {}, {}> & IEntityDocument & Required<{
_id: pkg.Types.ObjectId;
}> & {
__v: number;
}, any>;