Skip to content

Commit

Permalink
feat: allow negative descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
snitin315 committed Jan 23, 2022
1 parent e48e3a4 commit 2ad1258
Show file tree
Hide file tree
Showing 2 changed files with 146 additions and 383 deletions.
50 changes: 29 additions & 21 deletions types/bin/cli-flags.d.ts
Expand Up @@ -35,10 +35,10 @@ declare const _exports: {
type: string;
multiple: boolean;
description: string;
negatedDescription: string;
path: string;
}[];
description: string;
negatedDescription: string;
simpleType: string;
multiple: boolean;
};
Expand Down Expand Up @@ -71,10 +71,10 @@ declare const _exports: {
type: string;
multiple: boolean;
description: string;
negatedDescription: string;
path: string;
}[];
description: string;
negatedDescription: string;
simpleType: string;
multiple: boolean;
};
Expand Down Expand Up @@ -105,10 +105,10 @@ declare const _exports: {
type: string;
multiple: boolean;
description: string;
negatedDescription: string;
path: string;
}[];
description: string;
negatedDescription: string;
simpleType: string;
multiple: boolean;
};
Expand All @@ -117,10 +117,10 @@ declare const _exports: {
type: string;
multiple: boolean;
description: string;
negatedDescription: string;
path: string;
}[];
description: string;
negatedDescription: string;
simpleType: string;
multiple: boolean;
};
Expand Down Expand Up @@ -235,10 +235,10 @@ declare const _exports: {
type: string;
multiple: boolean;
description: string;
negatedDescription: string;
path: string;
}[];
description: string;
negatedDescription: string;
simpleType: string;
multiple: boolean;
};
Expand Down Expand Up @@ -279,18 +279,19 @@ declare const _exports: {
type: string;
multiple: boolean;
description: string;
negatedDescription: string;
path: string;
}
| {
type: string;
values: string[];
multiple: boolean;
description: string;
negatedDescription: string;
path: string;
}
)[];
description: string;
negatedDescription: string;
simpleType: string;
multiple: boolean;
};
Expand All @@ -299,10 +300,10 @@ declare const _exports: {
type: string;
multiple: boolean;
description: string;
negatedDescription: string;
path: string;
}[];
description: string;
negatedDescription: string;
simpleType: string;
multiple: boolean;
};
Expand All @@ -311,10 +312,10 @@ declare const _exports: {
type: string;
multiple: boolean;
description: string;
negatedDescription: string;
path: string;
}[];
description: string;
negatedDescription: string;
simpleType: string;
multiple: boolean;
};
Expand Down Expand Up @@ -466,10 +467,10 @@ declare const _exports: {
type: string;
multiple: boolean;
description: string;
negatedDescription: string;
path: string;
}[];
description: string;
negatedDescription: string;
simpleType: string;
multiple: boolean;
};
Expand Down Expand Up @@ -498,10 +499,10 @@ declare const _exports: {
type: string;
multiple: boolean;
description: string;
negatedDescription: string;
path: string;
}[];
description: string;
negatedDescription: string;
simpleType: string;
multiple: boolean;
};
Expand All @@ -510,22 +511,30 @@ declare const _exports: {
type: string;
multiple: boolean;
description: string;
negatedDescription: string;
path: string;
}[];
description: string;
negatedDescription: string;
simpleType: string;
multiple: boolean;
};
open: {
configs: {
type: string;
multiple: boolean;
description: string;
path: string;
}[];
configs: (
| {
type: string;
multiple: boolean;
description: string;
path: string;
}
| {
type: string;
multiple: boolean;
description: string;
negatedDescription: string;
path: string;
}
)[];
description: string;
negatedDescription: string;
simpleType: string;
multiple: boolean;
};
Expand Down Expand Up @@ -581,7 +590,6 @@ declare const _exports: {
path: string;
}[];
description: string;
negatedDescription: string;
simpleType: string;
multiple: boolean;
};
Expand Down Expand Up @@ -842,10 +850,10 @@ declare const _exports: {
type: string;
multiple: boolean;
description: string;
negatedDescription: string;
path: string;
}[];
description: string;
negatedDescription: string;
simpleType: string;
multiple: boolean;
};
Expand All @@ -854,10 +862,10 @@ declare const _exports: {
type: string;
multiple: boolean;
description: string;
negatedDescription: string;
path: string;
}[];
description: string;
negatedDescription: string;
simpleType: string;
multiple: boolean;
};
Expand Down

0 comments on commit 2ad1258

Please sign in to comment.