gcp-nrces-fhir
Version:
Google cloud healthcare api NRCES FHIR implimenataion
31 lines • 899 B
TypeScript
import { ResourceMaster } from "../../Interfaces";
import { BundelMain } from ".";
export declare class InvoiceRecordBundle extends BundelMain implements ResourceMaster {
toHtml(): Promise<string>;
getFHIR(options: {
id?: string;
composition: any;
pdfData?: string;
}): Promise<{
resourceType: string;
id: string | undefined;
meta: {
lastUpdated: string;
profile: string[];
};
identifier: {
system: string;
value: string | undefined;
};
type: string;
timestamp: any;
entry: any[];
}>;
getpdf(options: {
html: string;
qrCode?: string;
}): Promise<string>;
convertFhirToObject(options: any): void;
statusArray?: Function | undefined;
}
//# sourceMappingURL=InvoiceRecord.d.ts.map