UNPKG

fhirtypes

Version:
15 lines (14 loc) 374 B
import { IElement } from '../base'; import { QuantityComparatorType } from '../types'; export interface IQuantity extends IElement { value?: number; _value?: IElement; comparator?: QuantityComparatorType; _comparator?: IElement; unit?: string; _unit?: IElement; system?: string; _system?: IElement; code?: string; _code?: IElement; }