@ahryman40k/ts-fhir-types
Version:
Typescript / Javascript object model for FHIR standard Model follows FHIR R4 specifications.
13 lines (12 loc) • 334 B
TypeScript
import * as t from 'io-ts';
import { IExtension } from './RTTI_Extension';
import { IElement } from './RTTI_Element';
export interface IMoney {
id?: string;
extension?: IExtension[];
value?: number;
_value?: IElement;
currency?: string;
_currency?: IElement;
}
export declare const RTTI_Money: t.Type<IMoney>;