Follow up to PR #22021 to respond to feedback

This commit is contained in:
Cody Hoover
2017-03-07 21:32:17 +01:00
parent 85b90a9a86
commit ee4473f1ef
6 changed files with 10 additions and 10 deletions

View File

@@ -120,7 +120,7 @@ export abstract class MainThreadDiagnosticsShape {
}
export abstract class MainThreadDocumentsShape {
$tryCreateDocument(options?: { language?: string; contents?: string; }): TPromise<any> { throw ni(); }
$tryCreateDocument(options?: { language?: string; content?: string; }): TPromise<any> { throw ni(); }
$tryOpenDocument(uri: URI): TPromise<any> { throw ni(); }
$registerTextContentProvider(handle: number, scheme: string): void { throw ni(); }
$onVirtualDocumentChange(uri: URI, value: ITextSource): void { throw ni(); }