UNPKG

cql-execution

Version:

An execution framework for the Clinical Quality Language (CQL)

14 lines (13 loc) 433 B
import { Expression } from './expression'; import { Context } from '../runtime/context'; export declare class Retrieve extends Expression { datatype: string; templateId?: string; codeProperty?: string; codes?: Expression | null; dateProperty?: string; dateRange?: Expression | null; constructor(json: any); exec(ctx: Context): Promise<any>; recordMatchesCodesOrVS(record: any, codes: any): any; }