export function execute(...operations: any[]): (state: any) => any; export function steps(...operations: any[]): any; /** * @typedef {Object} State * @property {object} data JSON Data. * @property {Array} references History of all previous operations. * @ignore */ /** * @typedef {Function} Operation * @param {State} state * @ignore */ export const createSMS: any; export const updateSMS: any; export const reference: any; export type State = { /** * JSON Data. */ data: object; /** * History of all previous operations. */ references: Array; }; export type Operation = Function; export { lookup, relationship } from "./sourceHelpers.js"; export { each, join, fields, field, source, sourceValue, combine, merge, dataPath, dataValue, referencePath, lastReferenceValue, index, beta, toArray, arrayToString, alterState, fn, fnIf } from "@openfn/language-common";