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