This commit is contained in:
Benjamin Pasero
2016-06-27 10:09:13 +02:00
parent 41fa25de66
commit c0c45b348d
2 changed files with 5 additions and 1 deletions

View File

@@ -72,7 +72,7 @@ const options: minimist.Opts = {
}
};
export function parseArgs(args: string[]) {
export function parseArgs(args: string[]): ParsedArgs {
return minimist(args, options) as ParsedArgs;
}