Merge pull request #8616 from shardulm94/diff-count-variable

Add count variable to IDiffResult
This commit is contained in:
Masahiro Wakame
2016-03-19 14:56:41 +09:00
+1
View File
@@ -6,6 +6,7 @@
declare namespace JsDiff {
interface IDiffResult {
value: string;
count?: number;
added?: boolean;
removed?: boolean;
}