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