Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/vs/platform/dialogs/common/dialogs.ts')
-rw-r--r--src/vs/platform/dialogs/common/dialogs.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/vs/platform/dialogs/common/dialogs.ts b/src/vs/platform/dialogs/common/dialogs.ts
index ace003cd2b4..e0f77e27d48 100644
--- a/src/vs/platform/dialogs/common/dialogs.ts
+++ b/src/vs/platform/dialogs/common/dialogs.ts
@@ -273,6 +273,11 @@ export interface IDialogService {
/**
* Present a modal dialog to the user.
*
+ * @param severity the severity of the message
+ * @param message the message to show
+ * @param buttons the buttons to show. By convention, the first button should be the
+ * primary action and the last button the "Cancel" action.
+ *
* @returns A promise with the selected choice index. If the user refused to choose,
* then a promise with index of `cancelId` option is returned. If there is no such
* option then promise with index `0` is returned.