tspace-mysql
Version:
Tspace MySQL is a promise-based ORM for Node.js, designed with modern TypeScript and providing type safety for schema databases.
26 lines (25 loc) • 633 B
TypeScript
import DB from "./DB";
import Model from "./Model";
import Schema from "./Schema";
import Blueprint from "./Blueprint";
import Pool from "./Pool";
import sql from "./SqlLike";
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";
declare const _default: {
DB: typeof DB;
Model: typeof Model;
Schema: typeof Schema;
Blueprint: typeof Blueprint;
Pool: import("../types").TConnection;
};
export default _default;