UNPKG

kysely-codegen

Version:

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

8 lines (7 loc) 242 B
import { NodeType } from './node-type'; export declare class ImportClauseNode { readonly alias: string | null; readonly name: string; readonly type = NodeType.IMPORT_CLAUSE; constructor(name: string, alias?: string | null); }