Skip to content

Commit 7ee07a0

Browse files
Accepted baselines.
1 parent 5493e6f commit 7ee07a0

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

tests/baselines/reference/api/tsserverlibrary.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3321,7 +3321,7 @@ declare namespace ts {
33213321
resolveTypeReferenceDirectives?(typeReferenceDirectiveNames: string[] | readonly FileReference[], containingFile: string, redirectedReference: ResolvedProjectReference | undefined, options: CompilerOptions, containingFileMode?: SourceFile["impliedNodeFormat"] | undefined): (ResolvedTypeReferenceDirective | undefined)[];
33223322
getEnvironmentVariable?(name: string): string | undefined;
33233323
/** If provided along with custom resolveModuleNames or resolveTypeReferenceDirectives, used to determine if unchanged file path needs to re-resolve modules/type reference directives */
3324-
hasInvalidatedResolution?(filePath: Path): boolean;
3324+
hasInvalidatedResolutions?(filePath: Path): boolean;
33253325
createHash?(data: string): string;
33263326
getParsedCommandLine?(fileName: string): ParsedCommandLine | undefined;
33273327
}
@@ -5445,7 +5445,7 @@ declare namespace ts {
54455445
/** If provided, used to resolve type reference directives, otherwise typescript's default resolution */
54465446
resolveTypeReferenceDirectives?(typeReferenceDirectiveNames: string[] | readonly FileReference[], containingFile: string, redirectedReference: ResolvedProjectReference | undefined, options: CompilerOptions, containingFileMode?: SourceFile["impliedNodeFormat"] | undefined): (ResolvedTypeReferenceDirective | undefined)[];
54475447
/** If provided along with custom resolveModuleNames or resolveTypeReferenceDirectives, used to determine if unchanged file path needs to re-resolve modules/type reference directives */
5448-
hasInvalidatedResolution?(filePath: Path): boolean;
5448+
hasInvalidatedResolutions?(filePath: Path): boolean;
54495449
/**
54505450
* Returns the module resolution cache used by a provided `resolveModuleNames` implementation so that any non-name module resolution operations (eg, package.json lookup) can reuse it
54515451
*/

tests/baselines/reference/api/typescript.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3321,7 +3321,7 @@ declare namespace ts {
33213321
resolveTypeReferenceDirectives?(typeReferenceDirectiveNames: string[] | readonly FileReference[], containingFile: string, redirectedReference: ResolvedProjectReference | undefined, options: CompilerOptions, containingFileMode?: SourceFile["impliedNodeFormat"] | undefined): (ResolvedTypeReferenceDirective | undefined)[];
33223322
getEnvironmentVariable?(name: string): string | undefined;
33233323
/** If provided along with custom resolveModuleNames or resolveTypeReferenceDirectives, used to determine if unchanged file path needs to re-resolve modules/type reference directives */
3324-
hasInvalidatedResolution?(filePath: Path): boolean;
3324+
hasInvalidatedResolutions?(filePath: Path): boolean;
33253325
createHash?(data: string): string;
33263326
getParsedCommandLine?(fileName: string): ParsedCommandLine | undefined;
33273327
}
@@ -5445,7 +5445,7 @@ declare namespace ts {
54455445
/** If provided, used to resolve type reference directives, otherwise typescript's default resolution */
54465446
resolveTypeReferenceDirectives?(typeReferenceDirectiveNames: string[] | readonly FileReference[], containingFile: string, redirectedReference: ResolvedProjectReference | undefined, options: CompilerOptions, containingFileMode?: SourceFile["impliedNodeFormat"] | undefined): (ResolvedTypeReferenceDirective | undefined)[];
54475447
/** If provided along with custom resolveModuleNames or resolveTypeReferenceDirectives, used to determine if unchanged file path needs to re-resolve modules/type reference directives */
5448-
hasInvalidatedResolution?(filePath: Path): boolean;
5448+
hasInvalidatedResolutions?(filePath: Path): boolean;
54495449
/**
54505450
* Returns the module resolution cache used by a provided `resolveModuleNames` implementation so that any non-name module resolution operations (eg, package.json lookup) can reuse it
54515451
*/

0 commit comments

Comments
 (0)