Skip to content

Commit

Permalink
fixed js-git implicit any
Browse files Browse the repository at this point in the history
  • Loading branch information
Bartvds committed Jan 16, 2014
1 parent 663fce5 commit ce05d53
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions js-git/js-git.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ declare module JSGit {
hostname:string;
pathname:string;

discover(callback:(err:any, refs:StringMap) => void);
fetch(repo:Repo, opts:Object, callback:(err:any) => void);
close(callback?:(err:any) => void);
discover(callback:(err:any, refs:StringMap) => void):void;
fetch(repo:Repo, opts:Object, callback:(err:any) => void):void;
close(callback?:(err:any) => void):void;
}

interface DB {
Expand Down

0 comments on commit ce05d53

Please sign in to comment.