fix some typescript@next compilation errors

related to #28151
This commit is contained in:
Joao Moreno
2017-06-14 10:14:46 +02:00
parent 10f05818b9
commit 723bc3b3a7
2 changed files with 3 additions and 3 deletions

View File

@@ -408,7 +408,7 @@ export function createApiFactory(
onWillSaveTextDocument: (listener, thisArgs?, disposables?) => {
return extHostDocumentSaveParticipant.onWillSaveTextDocumentEvent(listener, thisArgs, disposables);
},
onDidChangeConfiguration: (listener: () => any, thisArgs?: any, disposables?: extHostTypes.Disposable[]) => {
onDidChangeConfiguration: (listener: (_: any) => any, thisArgs?: any, disposables?: extHostTypes.Disposable[]) => {
return extHostConfiguration.onDidChangeConfiguration(listener, thisArgs, disposables);
},
getConfiguration: (section?: string): vscode.WorkspaceConfiguration => {