@ahryman40k/ts-fhir-types
Version:
Typescript / Javascript object model for FHIR standard Model follows FHIR R4 specifications.
13 lines (12 loc) • 378 B
TypeScript
import * as t from 'io-ts';
import { IExtension } from './RTTI_Extension';
import { ICoding } from './RTTI_Coding';
import { IElement } from './RTTI_Element';
export interface ICodeableConcept {
id?: string;
extension?: IExtension[];
coding?: ICoding[];
text?: string;
_text?: IElement;
}
export declare const RTTI_CodeableConcept: t.Type<ICodeableConcept>;