Added DiffBinary

This commit is contained in:
Dolan
2017-06-07 02:42:24 +01:00
parent 41cdc45056
commit 9004069b4e
3 changed files with 16 additions and 0 deletions

14
types/nodegit/diff-binary.d.ts vendored Normal file
View File

@@ -0,0 +1,14 @@
import { DiffBinaryFile } from './diff-binary-file';
export namespace DiffBinary {
enum DIFF_BINARY {
NONE = 0,
LITERAL = 1,
DELTA = 2
}
}
export class DiffBinary {
oldFile: DiffBinaryFile;
newFile: DiffBinaryFile;
}