Added DiffBinaryFile

This commit is contained in:
Dolan
2017-06-07 02:41:07 +01:00
parent b93979373b
commit 41cdc45056
3 changed files with 8 additions and 0 deletions

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

@@ -0,0 +1,6 @@
export class DiffBinaryFile {
type: number;
data: string;
datalen: number;
inflatedlen: number;
}

View File

@@ -10,6 +10,7 @@ export { CheckoutOptions } from './checkout-options';
export { Commit } from './commit';
export { Config } from './config';
export { ConvenientPatch } from './convenient-patch';
export { DiffBinaryFile } from './diff-binary-file';
export { DiffDelta } from './diff-delta';
export { DiffFile } from './diff-file';
export { DiffHunk } from './diff-hunk';

View File

@@ -23,6 +23,7 @@
"commit.d.ts",
"config.d.ts",
"convenient-patch.d.ts",
"diff-binary-file.d.ts",
"diff-delta.d.ts",
"diff-file.d.ts",
"diff-hunk.d.ts",