@ahryman40k/ts-fhir-types
Version:
Typescript / Javascript object model for FHIR standard Model follows FHIR R4 specifications.
13 lines (12 loc) • 327 B
TypeScript
import * as t from 'io-ts';
import { IExtension } from './RTTI_Extension';
import { IElement } from './RTTI_Element';
export interface IPeriod {
id?: string;
extension?: IExtension[];
start?: string;
_start?: IElement;
end?: string;
_end?: IElement;
}
export declare const RTTI_Period: t.Type<IPeriod>;