@sequeljs/ast
Version:
A SQL AST manager for JavaScript
11 lines • 368 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const As_1 = require("../nodes/As");
const SQLLiteral_1 = require("../nodes/SQLLiteral");
class AliasPredication {
as(other) {
return new As_1.default(this, new SQLLiteral_1.default(other));
}
}
exports.default = AliasPredication;
//# sourceMappingURL=AliasPredication.js.map