Skip to content

Commit

Permalink
make parameter optional
Browse files Browse the repository at this point in the history
Signed-off-by: Jeromy Cannon <[email protected]>
  • Loading branch information
jeromy-cannon committed Dec 20, 2024
1 parent e6f8c16 commit 8c1ab0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/types/aliases.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export type TaskFunction = (
task: ListrTaskWrapper<any, any, any>,
) => Promise<Listr<any, any, any>> | Listr<any, any, any> | Promise<void> | void;

export type ConfigBuilder = (argv, ctx, task, shouldLoadNodeClient) => Promise<any>;
export type ConfigBuilder = (argv, ctx, task, [shouldLoadNodeClient]) => Promise<any>;

export type IP = string;

Expand Down

0 comments on commit 8c1ab0e

Please sign in to comment.