kysely
Version:
Type safe SQL query builder
9 lines (8 loc) • 496 B
TypeScript
import type { BinaryOperationNode } from '../../operation-node/binary-operation-node.js';
import { OperationNodeTransformer } from '../../operation-node/operation-node-transformer.js';
import type { EmptyInListsStrategy } from './handle-empty-in-lists.js';
export declare class HandleEmptyInListsTransformer extends OperationNodeTransformer {
#private;
constructor(strategy: EmptyInListsStrategy);
protected transformBinaryOperation(node: BinaryOperationNode): BinaryOperationNode;
}