UNPKG

@ahryman40k/ts-fhir-types

Version:

Typescript / Javascript object model for FHIR standard Model follows FHIR R4 specifications.

17 lines (16 loc) 477 B
import * as t from 'io-ts'; import { IExtension } from './RTTI_Extension'; import { IReference } from './RTTI_Reference'; import { IElement } from './RTTI_Element'; export interface IAnnotation { id?: string; extension?: IExtension[]; authorReference?: IReference; authorString?: string; _authorString?: IElement; time?: string; _time?: IElement; text?: string; _text?: IElement; } export declare const RTTI_Annotation: t.Type<IAnnotation>;