Files
evento/node_modules/kysely/dist/cjs/operation-node/having-node.d.ts
2026-03-18 14:55:56 -03:00

16 lines
531 B
TypeScript

import type { OperationNode } from './operation-node.js';
export interface HavingNode extends OperationNode {
readonly kind: 'HavingNode';
readonly having: OperationNode;
}
type HavingNodeFactory = Readonly<{
is(node: OperationNode): node is HavingNode;
create(filter: OperationNode): Readonly<HavingNode>;
cloneWithOperation(havingNode: HavingNode, operator: 'And' | 'Or', operation: OperationNode): Readonly<HavingNode>;
}>;
/**
* @internal
*/
export declare const HavingNode: HavingNodeFactory;
export {};