UNPKG

kysely-codegen

Version:

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

9 lines (8 loc) 304 B
import type { ExpressionNode } from './expression-node'; export declare class PropertyNode { readonly comment: string | null; readonly key: string; readonly type = "Property"; readonly value: ExpressionNode; constructor(key: string, value: ExpressionNode, comment?: string | null); }