fix integration test, #40169

This commit is contained in:
Johannes Rieken
2017-12-13 18:24:19 +01:00
parent d7bb4b5a6c
commit 89ac57db7f
2 changed files with 2 additions and 2 deletions

View File

@@ -150,7 +150,7 @@ export interface MainThreadDocumentContentProvidersShape extends IDisposable {
}
export interface MainThreadDocumentsShape extends IDisposable {
$tryCreateDocument(options?: { language?: string; content?: string; }): TPromise<any>;
$tryCreateDocument(options?: { language?: string; content?: string; }): TPromise<UriComponents>;
$tryOpenDocument(uri: UriComponents): TPromise<any>;
$trySaveDocument(uri: UriComponents): TPromise<boolean>;
}