simple-indent

This commit is contained in:
Alexander T
2019-08-02 18:27:06 +03:00
committed by Alexander
parent d1ae830def
commit afafd3fcb3
9 changed files with 462 additions and 16 deletions

View File

@@ -5916,7 +5916,8 @@ namespace ts {
// If fileName is provided, gets all the diagnostics associated with that file name.
// Otherwise, returns all the diagnostics (global and file associated) in this collection.
getDiagnostics(fileName?: string): DiagnosticWithLocation[];
getDiagnostics(): Diagnostic[];
getDiagnostics(fileName: string): DiagnosticWithLocation[];
reattachFileDiagnostics(newFile: SourceFile): void;
}