(index: number, patch: Patch)
| 99 | }) |
| 100 | |
| 101 | const makeUpdate = <Value, Patch>(index: number, patch: Patch): Differ.Differ.ReadonlyArray.Patch<Value, Patch> => { |
| 102 | const o = Object.create(UpdateProto) |
| 103 | o.index = index |
| 104 | o.patch = patch |
| 105 | return o |
| 106 | } |
| 107 | |
| 108 | type Instruction = |
| 109 | | Empty<any, any> |