Skip to content

Commit

Permalink
fix(js): Make flow.run input optional
Browse files Browse the repository at this point in the history
  • Loading branch information
inlined committed Feb 3, 2025
1 parent f158dd9 commit 737a908
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/core/src/action.ts
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ export type Action<
__action: ActionMetadata<I, O, S>;
__registry: Registry;
run(
input: z.infer<I>,
input?: z.infer<I>,
options?: ActionRunOptions<z.infer<S>>
): Promise<ActionResult<z.infer<O>>>;

Expand Down

0 comments on commit 737a908

Please sign in to comment.