@ahryman40k/ts-fhir-types
Version:
Typescript / Javascript object model for FHIR standard Model follows FHIR R4 specifications.
22 lines (21 loc) • 603 B
TypeScript
import * as t from 'io-ts';
import { IExtension } from './RTTI_Extension';
import { ICoding } from './RTTI_Coding';
import { IElement } from './RTTI_Element';
import { IReference } from './RTTI_Reference';
export interface ISignature {
type: ICoding[];
who: IReference;
id?: string;
extension?: IExtension[];
when?: string;
_when?: IElement;
onBehalfOf?: IReference;
targetFormat?: string;
_targetFormat?: IElement;
sigFormat?: string;
_sigFormat?: IElement;
data?: string;
_data?: IElement;
}
export declare const RTTI_Signature: t.Type<ISignature>;