UNPKG

kysely-codegen

Version:

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

9 lines (8 loc) 312 B
import type { ExpressionNode } from './expression-node'; import { NodeType } from './node-type'; export declare class GenericExpressionNode { readonly args: ExpressionNode[]; readonly name: string; readonly type = NodeType.GENERIC_EXPRESSION; constructor(name: string, args: ExpressionNode[]); }