kysely-codegen
Version:
`kysely-codegen` generates Kysely type definitions from your database. That's it.
10 lines (9 loc) • 351 B
TypeScript
import type { ExpressionNode } from './expression-node';
import { NodeType } from './node-type';
export declare class PropertyNode {
readonly comment: string | null;
readonly key: string;
readonly type = NodeType.PROPERTY;
readonly value: ExpressionNode;
constructor(key: string, value: ExpressionNode, comment?: string | null);
}