artmapper
Version:
A simple and intuitive ORM for Node.js with TypeScript and JavaScript support
20 lines • 1.38 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.QueryBuilder = exports.DatabaseConnection = exports.ArtMapperError = exports.Model = exports.artMapper = exports.ArtMapper = void 0;
// Export the main ArtMapper class and singleton instance
var ArtMapper_1 = require("./ArtMapper");
Object.defineProperty(exports, "ArtMapper", { enumerable: true, get: function () { return ArtMapper_1.ArtMapper; } });
Object.defineProperty(exports, "artMapper", { enumerable: true, get: function () { return ArtMapper_1.artMapper; } });
Object.defineProperty(exports, "Model", { enumerable: true, get: function () { return ArtMapper_1.Model; } });
// Export types
var types_1 = require("./types");
Object.defineProperty(exports, "ArtMapperError", { enumerable: true, get: function () { return types_1.ArtMapperError; } });
// Export connection and query classes (for advanced usage)
var connection_1 = require("./connection");
Object.defineProperty(exports, "DatabaseConnection", { enumerable: true, get: function () { return connection_1.DatabaseConnection; } });
var query_1 = require("./query");
Object.defineProperty(exports, "QueryBuilder", { enumerable: true, get: function () { return query_1.QueryBuilder; } });
// Default export
const ArtMapper_2 = require("./ArtMapper");
exports.default = ArtMapper_2.artMapper;
//# sourceMappingURL=index.js.map