(meta: {})
| 164 | return this.updateStore((store: CursorStore) => store.set('meta', jsToMap(meta))); |
| 165 | } |
| 166 | mergeMeta(meta: {}) { |
| 167 | return this.updateStore((store: CursorStore) => |
| 168 | store.update('meta', (oldMeta: Map<string, unknown>) => oldMeta.merge(jsToMap(meta))), |
| 169 | ); |
| 170 | } |
| 171 | } |
| 172 | |
| 173 | // This is a temporary hack to allow cursors to be added to the |
no test coverage detected