UNPKG

cql-execution

Version:

An execution framework for the Clinical Quality Language (CQL)

10 lines (9 loc) 459 B
import { type Collection } from 'immutable'; type Primitive = string | number | boolean | bigint | symbol | undefined | null; export type NormalizedKey = Primitive | Collection<NormalizedKey, unknown>; /** * Provide a unique key for an object to be used for value equality * A key is normalized such that representations for quantities, dates, intervals, etc. are comparable. */ export declare const toNormalizedKey: (js: any) => NormalizedKey; export {};