(id: string)
| 11 | } |
| 12 | |
| 13 | delete(id: string) { |
| 14 | if (this.map.has(id)) { |
| 15 | this.map.delete(id); |
| 16 | this.generation++; |
| 17 | } |
| 18 | } |
| 19 | |
| 20 | get(id: string): React.RefObject<HTMLDivElement> { |
| 21 | if (this.map.has(id)) { |
no outgoing calls
no test coverage detected