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

Commit

Permalink
fix: return promiselike
Browse files Browse the repository at this point in the history
  • Loading branch information
jdx committed Sep 15, 2018
1 parent 42f4a64 commit 14ba8ad
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
environment:
nodejs_version: "9"
nodejs_version: "10"
cache:
- '%LOCALAPPDATA%\Yarn -> appveyor.yml'
- node_modules -> yarn.lock
Expand All @@ -17,4 +17,4 @@ after_test:
bash codecov.sh
build: off

skip_branch_with_pr: true
2 changes: 1 addition & 1 deletion src/command.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export namespace Command {
flags?: Parser.flags.Input<any>
args?: Parser.args.Input
new(argv: string[], config: Config.IConfig): Instance
run(argv?: string[], config?: Config.LoadOptions): Promise<any>
run(argv?: string[], config?: Config.LoadOptions): PromiseLike<any>
}

export interface Instance {
Expand Down

0 comments on commit 14ba8ad

Please sign in to comment.