ts-flex-query
Version:
Flexible and type-safe data queries
6 lines (5 loc) • 444 B
TypeScript
import { PipeOperator } from '../../core';
export declare function and<TIn>(...operands: NoInfer<PipeOperator<TIn, boolean>[]>): PipeOperator<TIn, boolean>;
export declare function or<TIn>(...operands: NoInfer<PipeOperator<TIn, boolean>[]>): PipeOperator<TIn, boolean>;
export declare function not<TIn>(operand: NoInfer<PipeOperator<TIn, boolean>>): PipeOperator<TIn, boolean>;
export declare function negate(): PipeOperator<boolean, boolean>;