Skip to content

Commit 756aebf

Browse files
committed
Correctly constrain T in TerminalLinkProvider
Part of microsoft#91290
1 parent 4c51b89 commit 756aebf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/vs/vscode.proposed.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1074,7 +1074,7 @@ declare module 'vscode' {
10741074
terminal: Terminal;
10751075
}
10761076

1077-
export interface TerminalLinkProvider<T = TerminalLink> {
1077+
export interface TerminalLinkProvider<T extends TerminalLink = TerminalLink> {
10781078
/**
10791079
* Provide terminal links for the given context.
10801080
* @param context Information about what links are being provided for.

0 commit comments

Comments
 (0)