kysely-codegen
Version:
`kysely-codegen` generates Kysely type definitions from your database. That's it.
11 lines • 340 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.UnionExpressionNode = void 0;
class UnionExpressionNode {
constructor(args) {
this.type = 'UnionExpression';
this.args = args;
}
}
exports.UnionExpressionNode = UnionExpressionNode;
//# sourceMappingURL=union-expression-node.js.map
;