Skip to content

Commit

Permalink
fix(public/exec): fixes series.fn types
Browse files Browse the repository at this point in the history
  • Loading branch information
rafamel committed Apr 30, 2019
1 parent 180f393 commit 5b72565
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/public/exec/series.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export interface ISeries {
commands: string | string[],
env: IOfType<string>
): (args?: string[]) => Promise<void>;
fn(commands: string | string[], env: IOfType<string>): Promise<void>;
fn(commands: string | string[], options?: ISeriesOptions): Promise<void>;
}

/**
Expand Down

0 comments on commit 5b72565

Please sign in to comment.