fhirbuilder
Version:
Another FHIR Tool to build FHIR Resources
17 lines (16 loc) • 605 B
TypeScript
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 {};