@ahryman40k/ts-fhir-types
Version:
Typescript / Javascript object model for FHIR standard Model follows FHIR R4 specifications.
19 lines (18 loc) • 483 B
TypeScript
import * as t from 'io-ts';
import { IExtension } from './RTTI_Extension';
import { IElement } from './RTTI_Element';
export interface ICoding {
id?: string;
extension?: IExtension[];
system?: string;
_system?: IElement;
version?: string;
_version?: IElement;
code?: string;
_code?: IElement;
display?: string;
_display?: IElement;
userSelected?: boolean;
_userSelected?: IElement;
}
export declare const RTTI_Coding: t.Type<ICoding>;