Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions src/Common/CommonServices.ts
Original file line number Diff line number Diff line change
Expand Up @@ -654,6 +654,11 @@ export interface IGlobalMessageBanner {
* Links to supply to the format arguments in `messageFormat`
*/
messageLinks?: IGlobalMessageLink[];

/**
* The id used to check if the banner has been dismissed, and make dismissal permanent
*/
settingId?: string;
}

/**
Expand Down Expand Up @@ -711,7 +716,7 @@ export interface IGlobalDialog {
priority?: number;

/**
* The id used to check if the dialog has been dismissed.
* The id used to check if the dialog has been dismissed, and make dismissal permanent.
*/
settingId?: string;

Expand Down Expand Up @@ -850,4 +855,4 @@ export interface IContributedPill {
* Optional value to use as an aria-label and tooltip for the pill.
*/
tooltip?: string;
}
}