()
| 65 | } |
| 66 | |
| 67 | public async refresh(): Promise<void> { |
| 68 | for (const he of [...this.history, ...this.forwardHistory]) { |
| 69 | he.isStale = true; |
| 70 | } |
| 71 | await this.refreshCurrentEntry(); |
| 72 | } |
| 73 | |
| 74 | public async refreshPreview(packageDir: string): Promise<void> { |
| 75 | if(this.currentEntry?.helpFile.packageDir === packageDir){ |
nothing calls this directly
no test coverage detected