UNPKG

tspace-mysql

Version:

Tspace MySQL is a promise-based ORM for Node.js, designed with modern TypeScript and providing type safety for schema databases.

31 lines (30 loc) 757 B
import DB from "./DB"; import Model from "./Model"; import Schema from "./Schema"; import Blueprint from "./Blueprint"; import Pool from "./Pool"; import sql from "./SqlLike"; import Meta from "./Meta"; import View from './View'; export { View }; export { Meta }; export { sql }; export { DB }; export { Model }; export { Blueprint }; export { Pool }; export * from "./Decorator"; export * from "./Schema"; export * from "./UtilityTypes"; export * from "./Repository"; export * from "./Operator"; export * from "./Nest"; export * from './StoredProcedure'; declare const _default: { DB: typeof DB; Model: typeof Model; Schema: typeof Schema; Blueprint: typeof Blueprint; Pool: import("./Pool").PoolConnection; }; export default _default;