@typescript-deploys/pr-build 5.2.0-pr-54718-7 → 5.2.0-pr-54838-4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -31,6 +31,7 @@ declare namespace ts {
31
31
  interface SortedArray<T> extends Array<T> {
32
32
  " __sortedArrayBrand": any;
33
33
  }
34
+ function startWhitespaceCount(s: string): number;
34
35
  type Path = string & {
35
36
  __pathBrand: any;
36
37
  };
@@ -5433,7 +5434,7 @@ declare namespace ts {
5433
5434
  function formatDiagnostics(diagnostics: readonly Diagnostic[], host: FormatDiagnosticsHost): string;
5434
5435
  function formatDiagnostic(diagnostic: Diagnostic, host: FormatDiagnosticsHost): string;
5435
5436
  function formatDiagnosticsWithColorAndContext(diagnostics: readonly Diagnostic[], host: FormatDiagnosticsHost): string;
5436
- function flattenDiagnosticMessageText(diag: string | DiagnosticMessageChain | undefined, newLine: string, indent?: number): string;
5437
+ function flattenDiagnosticMessageText(diag: string | DiagnosticMessageChain | undefined, newLine: string, indent?: number, pretty?: boolean): string;
5437
5438
  /**
5438
5439
  * Calculates the resulting resolution mode for some reference in some file - this is generally the explicitly
5439
5440
  * provided resolution mode in the reference, unless one is not present, in which case it is the mode of the containing file.