(state: string)
| 53 | } |
| 54 | |
| 55 | private removeState(state: string) { |
| 56 | if (this.states.has(state)) { |
| 57 | this.states.delete(state); |
| 58 | document.documentElement.classList.remove(`lc-cursor-${state}`); |
| 59 | } |
| 60 | } |
| 61 | } |
| 62 | |
| 63 | export const cursor = new Cursor(); |
no test coverage detected