From cc2fd5a8d85708fa2544c912064c95bbcf7e11ea Mon Sep 17 00:00:00 2001 From: Dolan Date: Wed, 7 Jun 2017 00:32:18 +0100 Subject: [PATCH] Added meathods to ref log --- types/nodegit/ref-log.d.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/types/nodegit/ref-log.d.ts b/types/nodegit/ref-log.d.ts index 749f0c03a1..8557d02a39 100644 --- a/types/nodegit/ref-log.d.ts +++ b/types/nodegit/ref-log.d.ts @@ -20,4 +20,8 @@ export class Reflog { } export class ReflogEntry { + committer(): Signature; + idNew(): Oid; + idOld(): Oid; + message(): string; }