mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-03-31 10:44:33 +00:00
Added DiffBinary
This commit is contained in:
14
types/nodegit/diff-binary.d.ts
vendored
Normal file
14
types/nodegit/diff-binary.d.ts
vendored
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user