瀏覽代碼

Update docs

Steven Silvester 8 年之前
父節點
當前提交
aae9caba72
共有 1 個文件被更改,包括 6 次插入0 次删除
  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>;
   }