Skip to content

Commit

Permalink
Merge pull request #31 from JakeSidSmith/bad-arg-kawrg-types
Browse files Browse the repository at this point in the history
Bad arg kawrg types
  • Loading branch information
JakeSidSmith authored Mar 25, 2020
2 parents d1d55dd + 77df728 commit 4b196a4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ declare module 'jargs' {
export function collect <T extends Tree>(rootNode: HelpOrProgram, argv: ReadonlyArray<string>): T;

export interface ArgsOrKWArgs {
[index: string]: string | undefined | ReadonlyArray<undefined>;
[index: string]: string | undefined | ReadonlyArray<string>;
}

export interface Flags {
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jargs",
"version": "0.4.4",
"version": "0.4.5",
"description": "Simple node arg parser with explicit tree structure schema",
"main": "src/index.js",
"types": "index.d.ts",
Expand Down

0 comments on commit 4b196a4

Please sign in to comment.