Steven Silvester 8 år sedan
förälder
incheckning
aae9caba72
1 ändrade filer med 6 tillägg och 0 borttagningar
  1. 6 0
      src/common/observablevector.ts

+ 6 - 0
src/common/observablelist.ts → src/common/observablevector.ts

@@ -672,6 +672,9 @@ namespace ObservableVector {
 
     /**
      * The new values associated with the change.
+     *
+     * #### Notes
+     * The values will be contiguous starting at the `newIndex`.
      */
     newValues: IIterator<T>;
 
@@ -682,6 +685,9 @@ namespace ObservableVector {
 
     /**
      * The old values associated with the change.
+     *
+     * #### Notes
+     * The values will be contiguous starting at the `oldIndex`.
      */
     oldValues: IIterator<T>;
   }