UNPKG

kysely-codegen

Version:

`kysely-codegen` generates Kysely type definitions from your database. That's it.

9 lines (8 loc) 362 B
import type { IdentifierNode } from './identifier-node'; import type { ObjectExpressionNode } from './object-expression-node'; export declare class InterfaceDeclarationNode { readonly body: ObjectExpressionNode; readonly id: IdentifierNode; readonly type = "InterfaceDeclaration"; constructor(name: IdentifierNode, body: ObjectExpressionNode); }