UNPKG

@ahryman40k/ts-fhir-types

Version:

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

8 lines (7 loc) 205 B
import * as t from 'io-ts'; import { IExtension } from './RTTI_Extension'; export interface IElement { id?: string; extension?: IExtension[]; } export declare const RTTI_Element: t.Type<IElement>;