Skip to content
This repository has been archived by the owner on Aug 22, 2023. It is now read-only.

Commit

Permalink
fix: testing release
Browse files Browse the repository at this point in the history
  • Loading branch information
jdx committed Feb 1, 2018
1 parent 33c568e commit 7696da8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export type ParserInput<TFlags extends flags.Output> = {
strict?: boolean
}

export function parse<TFlags, TArgs>(argv: string[], options: ParserInput<TFlags>): ParserOutput<TFlags, TArgs> {
export function parse<TFlags, TArgs extends {[name: string]: string}>(argv: string[], options: ParserInput<TFlags>): ParserOutput<TFlags, TArgs> {
const input = {
argv,
args: (options.args || []).map((a: any) => deps.args.newArg(a as any)),
Expand Down

0 comments on commit 7696da8

Please sign in to comment.