UNPKG

fhirtypes

Version:
13 lines (12 loc) 356 B
import { IBackboneElement } from '../base'; import { ICodeableConcept } from '../datatypes'; export interface ITaskOutput extends IBackboneElement { /** * @description The name of the Output parameter. */ type: ICodeableConcept; /** * @description The value of the Output parameter as a basic type. */ value: unknown; }