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