Update diff.d.ts

JsDiff can now diff javascript objects with the "diffJson" function.
This commit is contained in:
Adam Roderick
2015-09-22 23:11:07 -06:00
parent 32029fcb4e
commit 4087da1722
+2
View File
@@ -39,6 +39,8 @@ declare module JsDiff {
function diffWordsWithSpace(oldStr:string, newStr:string):IDiffResult[];
function diffJson(oldObj: Object, newObj: Object): IDiffResult[];
function diffLines(oldStr:string, newStr:string):IDiffResult[];
function diffCss(oldStr:string, newStr:string):IDiffResult[];