You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
exportconstShareProviderCountContext=newRawContextKey<number>('shareProviderCount',0,localize('shareProviderCount',"The number of available share providers"));
19
20
21
+
typeShareEvent={
22
+
providerId: string;
23
+
};
24
+
typeShareClassification={
25
+
owner: 'joyceerhl';comment: 'Reporting which share provider is invoked.';
26
+
providerId: {classification: 'SystemMetaData';purpose: 'FeatureInsight';comment: 'The id of the selected share provider.'};
27
+
};
28
+
20
29
exportclassShareServiceimplementsIShareService{
21
30
readonly_serviceBrand: undefined;
22
31
@@ -28,6 +37,7 @@ export class ShareService implements IShareService {
constselected=awaitthis.quickInputService.pick(items,{canPickMany: false,placeHolder: localize('type to filter','Choose how to share {0}',this.labelService.getUriLabel(item.resourceUri))},token);
0 commit comments