Status typings

This commit is contained in:
Dolan
2017-06-04 23:02:39 +01:00
parent 314e6080f4
commit c1400707cd
6 changed files with 90 additions and 0 deletions

8
types/nodegit/status-options.d.ts vendored Normal file
View File

@@ -0,0 +1,8 @@
import { Strarray } from './str-array';
export interface StatusOptions {
version: number;
show: number;
flags: number;
pathspec: Strarray;
}