File tree Expand file tree Collapse file tree
src/vs/platform/product/common Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -49,6 +49,7 @@ export interface IProductConfiguration {
4949 readonly extensionTips ?: { [ id : string ] : string ; } ;
5050 readonly extensionImportantTips ?: { [ id : string ] : { name : string ; pattern : string ; isExtensionPack ?: boolean } ; } ;
5151 readonly exeBasedExtensionTips ?: { [ id : string ] : IExeBasedExtensionTip ; } ;
52+ readonly remoteExtensionTips ?: { [ remoteName : string ] : IRemoteExtensionTip ; } ;
5253 readonly extensionKeywords ?: { [ extension : string ] : readonly string [ ] ; } ;
5354 readonly keymapExtensionTips ?: readonly string [ ] ;
5455
@@ -112,6 +113,11 @@ export interface IExeBasedExtensionTip {
112113 exeFriendlyName ?: string ;
113114}
114115
116+ export interface IRemoteExtensionTip {
117+ friendlyName : string ;
118+ extensionId : string ;
119+ }
120+
115121export interface ISurveyData {
116122 surveyId : string ;
117123 surveyUrl : string ;
You can’t perform that action at this time.
0 commit comments