rawsql-ts
Version:
[beta]High-performance SQL parser and AST analyzer written in TypeScript. Provides fast parsing and advanced transformation capabilities.
12 lines • 976 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.InsertQuery = exports.ValuesQuery = exports.BinarySelectQuery = exports.SimpleSelectQuery = void 0;
const InsertQuery_1 = require("./InsertQuery");
Object.defineProperty(exports, "InsertQuery", { enumerable: true, get: function () { return InsertQuery_1.InsertQuery; } });
const SimpleSelectQuery_1 = require("./SimpleSelectQuery");
Object.defineProperty(exports, "SimpleSelectQuery", { enumerable: true, get: function () { return SimpleSelectQuery_1.SimpleSelectQuery; } });
const BinarySelectQuery_1 = require("./BinarySelectQuery");
Object.defineProperty(exports, "BinarySelectQuery", { enumerable: true, get: function () { return BinarySelectQuery_1.BinarySelectQuery; } });
const ValuesQuery_1 = require("./ValuesQuery");
Object.defineProperty(exports, "ValuesQuery", { enumerable: true, get: function () { return ValuesQuery_1.ValuesQuery; } });
//# sourceMappingURL=SelectQuery.js.map
;