Strict null check extHostDiagnostics

This commit is contained in:
Matt Bierner
2019-03-05 15:08:30 -08:00
parent 14c4fde6d6
commit db9a994ded
3 changed files with 15 additions and 8 deletions

View File

@@ -142,7 +142,7 @@ export interface MainThreadConfigurationShape extends IDisposable {
}
export interface MainThreadDiagnosticsShape extends IDisposable {
$changeMany(owner: string, entries: [UriComponents, IMarkerData[]][]): void;
$changeMany(owner: string, entries: [UriComponents, IMarkerData[] | undefined][]): void;
$clear(owner: string): void;
}