UNPKG

kysely

Version:

Type safe SQL query builder

15 lines (14 loc) 465 B
import type { OperationNode } from './operation-node.js'; export interface DefaultValueNode extends OperationNode { readonly kind: 'DefaultValueNode'; readonly defaultValue: OperationNode; } type DefaultValueNodeFactory = Readonly<{ is(node: OperationNode): node is DefaultValueNode; create(defaultValue: OperationNode): Readonly<DefaultValueNode>; }>; /** * @internal */ export declare const DefaultValueNode: DefaultValueNodeFactory; export {};