From fbbdc7371599c74b9a8ff6844790dd6bab145cd7 Mon Sep 17 00:00:00 2001 From: widmogrod Date: Fri, 10 Nov 2023 13:12:34 +0100 Subject: [PATCH] introduce new exported types in ts --- example/my-app/src/workflow/workflow.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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'