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