@typescript-deploys/pr-build 5.2.0-pr-54838-4 → 5.2.0-pr-54922-6
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 +302 -330
- package/lib/tsserver.js +478 -406
- package/lib/tsserverlibrary.d.ts +3 -4
- package/lib/tsserverlibrary.js +478 -405
- package/lib/typescript.d.ts +2 -3
- package/lib/typescript.js +457 -384
- package/lib/typingsInstaller.js +104 -100
- package/package.json +2 -2
package/lib/tsserverlibrary.d.ts
CHANGED
|
@@ -3400,7 +3400,7 @@ declare namespace ts {
|
|
|
3400
3400
|
markAsDirty(): void;
|
|
3401
3401
|
getScriptFileNames(): string[];
|
|
3402
3402
|
getLanguageService(): never;
|
|
3403
|
-
|
|
3403
|
+
getHostForAutoImportProvider(): never;
|
|
3404
3404
|
getProjectReferences(): readonly ts.ProjectReference[] | undefined;
|
|
3405
3405
|
getTypeAcquisition(): TypeAcquisition;
|
|
3406
3406
|
}
|
|
@@ -4084,7 +4084,6 @@ declare namespace ts {
|
|
|
4084
4084
|
interface SortedArray<T> extends Array<T> {
|
|
4085
4085
|
" __sortedArrayBrand": any;
|
|
4086
4086
|
}
|
|
4087
|
-
function startWhitespaceCount(s: string): number;
|
|
4088
4087
|
type Path = string & {
|
|
4089
4088
|
__pathBrand: any;
|
|
4090
4089
|
};
|
|
@@ -6275,7 +6274,7 @@ declare namespace ts {
|
|
|
6275
6274
|
getSourceFileByPath(path: Path): SourceFile | undefined;
|
|
6276
6275
|
getCurrentDirectory(): string;
|
|
6277
6276
|
}
|
|
6278
|
-
interface ParseConfigHost {
|
|
6277
|
+
interface ParseConfigHost extends ModuleResolutionHost {
|
|
6279
6278
|
useCaseSensitiveFileNames: boolean;
|
|
6280
6279
|
readDirectory(rootDir: string, extensions: readonly string[], excludes: readonly string[] | undefined, includes: readonly string[], depth?: number): readonly string[];
|
|
6281
6280
|
/**
|
|
@@ -9487,7 +9486,7 @@ declare namespace ts {
|
|
|
9487
9486
|
function formatDiagnostics(diagnostics: readonly Diagnostic[], host: FormatDiagnosticsHost): string;
|
|
9488
9487
|
function formatDiagnostic(diagnostic: Diagnostic, host: FormatDiagnosticsHost): string;
|
|
9489
9488
|
function formatDiagnosticsWithColorAndContext(diagnostics: readonly Diagnostic[], host: FormatDiagnosticsHost): string;
|
|
9490
|
-
function flattenDiagnosticMessageText(diag: string | DiagnosticMessageChain | undefined, newLine: string, indent?: number
|
|
9489
|
+
function flattenDiagnosticMessageText(diag: string | DiagnosticMessageChain | undefined, newLine: string, indent?: number): string;
|
|
9491
9490
|
/**
|
|
9492
9491
|
* Calculates the resulting resolution mode for some reference in some file - this is generally the explicitly
|
|
9493
9492
|
* provided resolution mode in the reference, unless one is not present, in which case it is the mode of the containing file.
|