diff --git a/example/my-app/src/workflow/workflow.ts b/example/my-app/src/workflow/workflow.ts index 46764fad..15110ff7 100644 --- a/example/my-app/src/workflow/workflow.ts +++ b/example/my-app/src/workflow/workflow.ts @@ -434,9 +434,6 @@ export type ResumeSchedule = { ParentRunID?: string, } -export type ResumeOptions = { - Timeout?: number, -} export type BaseState = { Flow?: Worflow, RunID?: string, @@ -457,14 +454,17 @@ export type Execution = { export type ApplyAwaitOptions = { Timeout?: number, } +export type ResumeOptions = { + Timeout?: number, +} +export type FunctionOutput = { + Result?: schema.Schema, +} export type FunctionInput = { Name?: string, CallbackID?: string, Args?: any[], } -export type FunctionOutput = { - Result?: schema.Schema, -} //eslint-disable-next-line import * as schema from './github_com_widmogrod_mkunion_x_schema'