(key: Key)
| 84 | }) |
| 85 | |
| 86 | const makeRemove = <Key, Value, Patch>(key: Key): Differ.Differ.HashMap.Patch<Key, Value, Patch> => { |
| 87 | const o = Object.create(RemoveProto) |
| 88 | o.key = key |
| 89 | return o |
| 90 | } |
| 91 | |
| 92 | interface Update<Key, Value, Patch> extends Differ.Differ.HashMap.Patch<Key, Value, Patch> { |
| 93 | readonly _tag: "Update" |