kysely
Version:
Type safe SQL query builder
12 lines (11 loc) • 344 B
TypeScript
import { OperationNode } from './operation-node.js';
export interface DefaultInsertValueNode extends OperationNode {
readonly kind: 'DefaultInsertValueNode';
}
/**
* @internal
*/
export declare const DefaultInsertValueNode: Readonly<{
is(node: OperationNode): node is DefaultInsertValueNode;
create(): DefaultInsertValueNode;
}>;