/** * Execute a sequence of operations. * Wraps `language-common/execute`, and prepends initial state for http. * @private * @param {Operations} operations - Operations to be performed. * @returns {Operation} */ export function execute(...operations: Operations): Operation; /** * Get FHIR resources from OpenIMIS * @public * @example * getFHIR("Patient") * @function * @param {string} path - Path to resource * @param {object} params - data to create the new resource * @param {function} callback - (Optional) callback function * @returns {Operation} */ export function getFHIR(path: string, params: object, callback?: Function): Operation; export { alterState, dataPath, dataValue, dateFns, each, field, fields, fn, fnIf, lastReferenceValue, merge, sourceValue, as } from "@openfn/language-common";