UNPKG

kysely-codegen

Version:

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

12 lines (11 loc) 319 B
export declare class IdentifierNode { readonly isTableIdentifier: boolean; name: string; readonly type = "Identifier"; constructor(name: string, options?: { isTableIdentifier?: boolean; }); } export declare class TableIdentifierNode extends IdentifierNode { constructor(name: string); }