From 402cad5855dad6c098bfe3cead523ea0049f6021 Mon Sep 17 00:00:00 2001 From: k725 Date: Thu, 11 Mar 2021 19:14:47 +0900 Subject: [PATCH] fixed WorkflowStep StepUpdateArguments property types. --- src/WorkflowStep.ts | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/src/WorkflowStep.ts b/src/WorkflowStep.ts index 4fc139f71..e678066c2 100644 --- a/src/WorkflowStep.ts +++ b/src/WorkflowStep.ts @@ -33,13 +33,11 @@ export interface StepUpdateArguments { }; }; }; - outputs?: [ - { - name: string; - type: string; - label: string; - }, - ]; + outputs?: { + name: string; + type: string; + label: string; + }[]; step_name?: string; step_image_url?: string; }