Exposed Open/Save dialog title on public VSCode Proposed API (#90493)

Co-authored-by: Alex Ross <alros@microsoft.com>
This commit is contained in:
Gustavo Cassel
2020-02-19 11:38:44 -03:00
committed by GitHub
parent 9d27bbe7ae
commit 4957d8d6df
3 changed files with 35 additions and 2 deletions

View File

@@ -174,12 +174,14 @@ export interface MainThreadDialogOpenOptions {
canSelectFolders?: boolean;
canSelectMany?: boolean;
filters?: { [name: string]: string[]; };
title?: string;
}
export interface MainThreadDialogSaveOptions {
defaultUri?: UriComponents;
saveLabel?: string;
filters?: { [name: string]: string[]; };
title?: string;
}
export interface MainThreadDiaglogsShape extends IDisposable {