From 79521e48c81eb95f010db8b43c41bdd6654eda47 Mon Sep 17 00:00:00 2001 From: garyking Date: Wed, 23 Oct 2019 17:51:38 -0400 Subject: [PATCH] gitRemotes returns Remote[] (#39331) This reverts d0bb9d962473201ea7bbcd3e7c80d3895dc58914 from #31420 release notes: https://github.com/nodegit/nodegit/releases/tag/v0.25.0 --- types/nodegit/repository.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/nodegit/repository.d.ts b/types/nodegit/repository.d.ts index 7573809cac..c6f3843597 100644 --- a/types/nodegit/repository.d.ts +++ b/types/nodegit/repository.d.ts @@ -163,7 +163,7 @@ export class Repository { /** * Lists out the remotes in the given repository. */ - getRemotes(callback?: Function): Promise; + getRemotes(callback?: Function): Promise; /** * Gets a remote from the repo */