//#region ../ai/src/contracts/workflow/next-step-result.type.d.ts /** * Return shape for `nextStep` callbacks — controls workflow routing. * * - `{ goto: string }` — jump to a named step * - `{ end: true }` — terminate the workflow successfully * - `void` / `undefined` — fall through (next declared step, or next * level of routing resolution) */ type NextStepResult = { goto: string; } | { end: true; } | void | undefined; //#endregion export { NextStepResult }; //# sourceMappingURL=next-step-result.type.d.mts.map