We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51bfed7 commit c248d39Copy full SHA for c248d39
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "simple-diff",
3
- "version": "1.7.0",
+ "version": "1.7.1",
4
"description": "simple diff for object and arrays with options",
5
"main": "simple-diff.js",
6
"types": "simple-diff.d.ts",
simple-diff.d.ts
@@ -28,4 +28,7 @@ export interface DiffEvent extends PathChange {
28
type: 'add' | 'remove' | 'change' | 'add-item' | 'remove-item' | 'move-item',
29
oldValue: any,
30
newValue: any,
31
+ oldIndex?: number,
32
+ curIndex?: number,
33
+ newIndex?: number,
34
}
0 commit comments