UNPKG

@ahryman40k/ts-fhir-types

Version:

Typescript / Javascript object model for FHIR standard Model follows FHIR R4 specifications.

11 lines (10 loc) 287 B
import * as t from 'io-ts'; import { IExtension } from './RTTI_Extension'; import { IQuantity } from './RTTI_Quantity'; export interface IRange { id?: string; extension?: IExtension[]; low?: IQuantity; high?: IQuantity; } export declare const RTTI_Range: t.Type<IRange>;