Skip to content

Commit 9984aeb

Browse files
author
Andy Hanson
committed
Update API (#24966)
1 parent 6898166 commit 9984aeb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14025,7 +14025,6 @@ declare namespace ts.server {
1402514025
stopWatchingConfigFilesForInferredProjectRoot(info: ScriptInfo): void;
1402614026
private forEachConfigFileLocation;
1402714027
private getConfigFileNameForFile;
14028-
private getConfigFileNameForPossiblyClosedFile;
1402914028
private printProjects;
1403014029
private findConfiguredProjectByProjectName;
1403114030
private getConfiguredProjectByCanonicalConfigFilePath;
@@ -14066,12 +14065,13 @@ declare namespace ts.server {
1406614065
private removeRootOfInferredProjectIfNowPartOfOtherProject;
1406714066
private ensureProjectForOpenFiles;
1406814067
openClientFile(fileName: string, fileContent?: string, scriptKind?: ScriptKind, projectRootPath?: string): OpenConfiguredProjectResult;
14069-
getProjectForFileWithoutOpening(fileName: NormalizedPath): Project | undefined;
14068+
getProjectForFileWithoutOpening(fileName: NormalizedPath): {
14069+
readonly scriptInfo: ScriptInfo;
14070+
readonly project: Project;
14071+
} | undefined;
1407014072
fileExists(fileName: NormalizedPath): boolean;
1407114073
private findExternalProjectContainingOpenScriptInfo;
14072-
private getOrCreateConfiguredProject;
1407314074
openClientFileWithNormalizedPath(fileName: NormalizedPath, fileContent?: string, scriptKind?: ScriptKind, hasMixedContent?: boolean, projectRootPath?: NormalizedPath): OpenConfiguredProjectResult;
14074-
tryOpenClientFileWithNormalizedPath(fileName: NormalizedPath, fileContent?: string, scriptKind?: ScriptKind, hasMixedContent?: boolean, projectRootPath?: NormalizedPath, dontOpenIfNotExists?: boolean): OpenConfiguredProjectResult | undefined;
1407514075
private telemetryOnOpenFile;
1407614076
closeClientFile(uncheckedFileName: string): void;
1407714077
private collectChanges;

0 commit comments

Comments
 (0)