UNPKG

@ahryman40k/ts-fhir-types

Version:

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

21 lines (20 loc) 613 B
import * as t from 'io-ts'; import { IMeta } from './RTTI_Meta'; import { IElement } from './RTTI_Element'; import { IReference } from './RTTI_Reference'; import { IDomainResource } from './IDomainResource'; export interface IBinary extends IDomainResource { resourceType: 'Binary'; id?: string; meta?: IMeta; implicitRules?: string; _implicitRules?: IElement; language?: string; _language?: IElement; contentType?: string; _contentType?: IElement; securityContext?: IReference; data?: string; _data?: IElement; } export declare const RTTI_Binary: t.Type<IBinary>;