This commit is contained in:
Johannes Rieken
2017-09-27 10:27:11 +02:00
parent 37335ef228
commit 22336f0530
2 changed files with 4 additions and 4 deletions

View File

@@ -122,13 +122,13 @@ export interface MainThreadDialogOpenOptions {
openFiles?: boolean;
openFolders?: boolean;
openMany?: boolean;
filters: { [name: string]: string[] };
filters?: { [name: string]: string[] };
}
export interface MainThreadDialogSaveOptions {
defaultUri?: URI;
saveLabel?: string;
filters: { [name: string]: string[] };
filters?: { [name: string]: string[] };
}
export interface MainThreadDiaglogsShape extends IDisposable {