Have TerminalLinkProvider.handleTerminalLink return ProviderResult

Fixes #101391
This commit is contained in:
Daniel Imms
2020-07-14 14:43:14 -07:00
parent fe39b1c6de
commit cb31fc6ce2
+1 -1
View File
@@ -1122,7 +1122,7 @@ declare module 'vscode' {
/**
* Handle an activated terminal link.
*/
handleTerminalLink(link: T): void;
handleTerminalLink(link: T): ProviderResult<void>;
}
export interface TerminalLink {