Skip to content

Commit

Permalink
feat(command): add .getRawArgs() method
Browse files Browse the repository at this point in the history
  • Loading branch information
c4spar committed Jun 4, 2020
1 parent 385f38f commit 4f18db7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/command/lib/base-command.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1395,6 +1395,10 @@ export class BaseCommand<O = any, A extends Array<any> = any> {
return this.examples.find( example => example.name === name );
}

public getRawArgs(): string[] {
return this.rawArgs;
}

public getLiteralArgs(): string[] {
return this.literalArgs;
}
Expand Down

0 comments on commit 4f18db7

Please sign in to comment.