(file: string)
| 326 | } |
| 327 | |
| 328 | public async requestHelpContent(file: string): Promise<HelpFile | undefined> { |
| 329 | const content: string | null | unknown = await liveShareRequest(Callback.GetHelpFileContent, file); |
| 330 | if (content) { |
| 331 | return content as HelpFile; |
| 332 | } else { |
| 333 | console.error('[GuestService] failed to retrieve help content from host'); |
| 334 | } |
| 335 | } |
| 336 | |
| 337 | } |
| 338 |
no test coverage detected