UNPKG

undeexcepturi

Version:

TypeScript ORM for Node.js based on Data Mapper, Unit of Work and Identity Map patterns. Supports MongoDB, MySQL, PostgreSQL and SQLite databases as well as usage with vanilla JavaScript.

8 lines (7 loc) 154 B
import { ObjectId } from 'bson'; export declare class Test { _id: ObjectId; id: string; name: string; hiddenField?: number | undefined; }