UNPKG

fhirbuilder

Version:
17 lines (16 loc) 605 B
import { IBuildable } from '../base/IBuildable'; import { Range } from '../../models'; import { ISimpleQuantity } from 'fhirtypes/dist/r4/datatypes/ISimpleQuantity'; import { ElementBuilder } from '../base/ElementBuilder'; interface IRangeBuilder extends IBuildable<Range> { setLow(low: ISimpleQuantity): this; setHigh(high: ISimpleQuantity): this; } export declare class RangeBuilder extends ElementBuilder implements IRangeBuilder { private readonly range; constructor(); build(): Range; setLow(low: ISimpleQuantity): this; setHigh(high: ISimpleQuantity): this; } export {};