kysely-codegen
Version:
`kysely-codegen` generates Kysely type definitions from your database. That's it.
12 lines • 380 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.InferClauseNode = void 0;
const node_type_1 = require("./node-type");
class InferClauseNode {
constructor(name) {
this.type = node_type_1.NodeType.INFER_CLAUSE;
this.name = name;
}
}
exports.InferClauseNode = InferClauseNode;
//# sourceMappingURL=infer-clause-node.js.map