gcp-nrces-fhir
Version:
Google cloud healthcare api NRCES FHIR implimenataion
21 lines • 616 B
TypeScript
import { ResourceMaster } from "../Interfaces";
import ResourceMain from "./ResourceMai";
export interface BINARY {
id?: string;
data: string;
}
export declare class Binary extends ResourceMain implements ResourceMaster {
toHtml(): Promise<string>;
statusArray?: Function | undefined;
getFHIR(options: BINARY): {
resourceType: string;
id: string | undefined;
meta: {
profile: string[];
};
contentType: string;
data: string;
};
convertFhirToObject(options: any): BINARY;
}
//# sourceMappingURL=Binary.d.ts.map