(action: string)
| 127 | return this.updateStore('actions', (actions: Set<string>) => actions.add(action)); |
| 128 | } |
| 129 | removeAction(action: string) { |
| 130 | return this.updateStore('actions', (actions: Set<string>) => actions.delete(action)); |
| 131 | } |
| 132 | setActions(actions: Iterable<string>) { |
| 133 | return this.updateStore((store: CursorStore) => store.set('actions', Set<string>(actions))); |
| 134 | } |
nothing calls this directly
no test coverage detected