(path: string)
| 74 | } |
| 75 | |
| 76 | onTranscriptPathFound(path: string): void { |
| 77 | if (this.transcriptPath === path) { |
| 78 | return; |
| 79 | } |
| 80 | this.transcriptPath = path; |
| 81 | for (const callback of this.transcriptPathCallbacks) { |
| 82 | callback(path); |
| 83 | } |
| 84 | } |
| 85 | |
| 86 | addTranscriptPathCallback(cb: (path: string) => void): void { |
| 87 | this.transcriptPathCallbacks.push(cb); |
no outgoing calls
no test coverage detected