fume-fhir-converter
Version:
FHIR-Utilized Mapping Engine - Community
15 lines • 481 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.search = void 0;
/**
* © Copyright Outburn Ltd. 2022-2024 All Rights Reserved
* Project name: FUME-COMMUNITY
*/
const fhirServer_1 = require("../fhirServer");
const search = async (query, params) => {
const url = encodeURI(query);
const res = await (0, fhirServer_1.getFhirClient)().search(url, params);
return res;
};
exports.search = search;
//# sourceMappingURL=search.js.map