(id: string, ref: React.RefObject<HTMLDivElement>)
| 6 | generation: number = 0; |
| 7 | |
| 8 | set(id: string, ref: React.RefObject<HTMLDivElement>) { |
| 9 | this.map.set(id, ref); |
| 10 | this.generation++; |
| 11 | } |
| 12 | |
| 13 | delete(id: string) { |
| 14 | if (this.map.has(id)) { |
no outgoing calls
no test coverage detected