(filePath: string)
| 156 | |
| 157 | // dispose child and remove it from set |
| 158 | public delete(filePath: string): boolean { |
| 159 | this.store.get(filePath)?.dispose(); |
| 160 | return this.store.delete(filePath); |
| 161 | } |
| 162 | |
| 163 | public get(filePath: string): RMarkdownPreview | undefined { |
| 164 | return this.store.get(filePath); |
no test coverage detected