@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.
- package/lib/tsc.js +247 -184
- package/lib/tsserver.js +287 -208
- package/lib/tsserverlibrary.d.ts +2 -1
- package/lib/tsserverlibrary.js +286 -208
- package/lib/typescript.d.ts +2 -1
- package/lib/typescript.js +277 -200
- package/lib/typingsInstaller.js +48 -43
- package/package.json +2 -2
package/lib/tsserverlibrary.d.ts
CHANGED
|
@@ -4084,6 +4084,7 @@ declare namespace ts {
|
|
|
4084
4084
|
interface SortedArray<T> extends Array<T> {
|
|
4085
4085
|
" __sortedArrayBrand": any;
|
|
4086
4086
|
}
|
|
4087
|
+
function startWhitespaceCount(s: string): number;
|
|
4087
4088
|
type Path = string & {
|
|
4088
4089
|
__pathBrand: any;
|
|
4089
4090
|
};
|
|
@@ -9486,7 +9487,7 @@ declare namespace ts {
|
|
|
9486
9487
|
function formatDiagnostics(diagnostics: readonly Diagnostic[], host: FormatDiagnosticsHost): string;
|
|
9487
9488
|
function formatDiagnostic(diagnostic: Diagnostic, host: FormatDiagnosticsHost): string;
|
|
9488
9489
|
function formatDiagnosticsWithColorAndContext(diagnostics: readonly Diagnostic[], host: FormatDiagnosticsHost): string;
|
|
9489
|
-
function flattenDiagnosticMessageText(diag: string | DiagnosticMessageChain | undefined, newLine: string, indent?: number): string;
|
|
9490
|
+
function flattenDiagnosticMessageText(diag: string | DiagnosticMessageChain | undefined, newLine: string, indent?: number, pretty?: boolean): string;
|
|
9490
9491
|
/**
|
|
9491
9492
|
* Calculates the resulting resolution mode for some reference in some file - this is generally the explicitly
|
|
9492
9493
|
* provided resolution mode in the reference, unless one is not present, in which case it is the mode of the containing file.
|