Added documentation

This commit is contained in:
Dolan
2017-06-09 01:07:26 +01:00
parent 9dd615be31
commit b47f2db564
27 changed files with 1500 additions and 27 deletions

View File

@@ -9,6 +9,25 @@ export namespace DiffBinary {
}
export class DiffBinary {
/**
*
*
* @type {DiffBinaryFile}
* @memberof DiffBinary
*/
oldFile: DiffBinaryFile;
/**
*
*
* @type {DiffBinaryFile}
* @memberof DiffBinary
*/
newFile: DiffBinaryFile;
/**
*
*
* @type {DiffBinary.DIFF_BINARY}
* @memberof DiffBinary
*/
containsData: DiffBinary.DIFF_BINARY;
}