UNPKG

cql-execution

Version:

An execution framework for the Clinical Quality Language (CQL)

8 lines (7 loc) 355 B
export declare class ThreeValuedLogic { static and(...val: (boolean | null)[]): boolean | null; static or(...val: (boolean | null)[]): boolean | null; static xor(...val: (boolean | null)[]): boolean | null; static not(val: boolean | null): boolean | null; static implies(left: boolean | null, right: boolean | null): boolean | null; }