UNPKG

fhirtypes

Version:
13 lines (12 loc) 308 B
import { IElement } from '../base'; import { IQuantity } from './IQuantity'; export interface IRatio extends IElement { /** * @description The value of the numerator. */ numerator?: IQuantity; /** * @description The value of the denominator. */ denominator?: IQuantity; }