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