16 lines
772 B
JavaScript
16 lines
772 B
JavaScript
"use strict";
|
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
};
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.MSSQL_SCHEMA = exports.build = void 0;
|
|
exports.parse = parse;
|
|
const connection_string_1 = require("./connection-string");
|
|
const builder_1 = require("./builder");
|
|
Object.defineProperty(exports, "build", { enumerable: true, get: function () { return builder_1.build; } });
|
|
const mssql_schema_1 = __importDefault(require("./schema/mssql-schema"));
|
|
exports.MSSQL_SCHEMA = mssql_schema_1.default;
|
|
function parse(connectionString) {
|
|
return Object.freeze(new connection_string_1.ConnectionString(connectionString));
|
|
}
|
|
//# sourceMappingURL=index.js.map
|