UNPKG

cql-execution

Version:

An execution framework for the Clinical Quality Language (CQL)

16 lines (15 loc) 392 B
import { Expression } from './expression'; import { Context } from '../runtime/context'; declare class Element { name: string; value: any; constructor(json: any); exec(ctx: Context): Promise<any>; } export declare class Instance extends Expression { classType: string; element: Element[]; constructor(json: any); exec(ctx: Context): Promise<any>; } export {};