Skip to content

Commit

Permalink
Merge pull request DefinitelyTyped#12599 from JD-Robbs/patch-1
Browse files Browse the repository at this point in the history
Adds missing `retained` status to `KnockoutArrayChange`
  • Loading branch information
Igorbek authored Nov 11, 2016
2 parents dc271c6 + 6a320b7 commit d52e1a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion knockout/knockout.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ interface KnockoutUtils {
}

interface KnockoutArrayChange<T> {
status: "added" | "deleted";
status: "added" | "deleted" | "retained";
value: T;
index: number;
moved?: number;
Expand Down

0 comments on commit d52e1a6

Please sign in to comment.