Skip to content

Commit

Permalink
fix(core): fix typings in params (#9735)
Browse files Browse the repository at this point in the history
  • Loading branch information
FrozenPandaz committed Apr 7, 2022
1 parent 74c2ca9 commit cc4e8c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/nx/src/utils/params.ts
Expand Up @@ -64,7 +64,7 @@ export type Unmatched = {

export type Options = {
'--'?: Unmatched[];
[k: string]: string | number | boolean | string[] | Unmatched[];
[k: string]: string | number | boolean | string[] | Unmatched[] | undefined;
};

export async function handleErrors(isVerbose: boolean, fn: Function) {
Expand Down

0 comments on commit cc4e8c1

Please sign in to comment.