Skip to content

Commit 5c3cb2b

Browse files
committed
Update API baselines
1 parent b0421ff commit 5c3cb2b

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3868,7 +3868,7 @@ declare namespace ts {
38683868
readonly includeCompletionsForModuleExports?: boolean;
38693869
readonly includeAutomaticOptionalChainCompletions?: boolean;
38703870
readonly includeCompletionsWithInsertText?: boolean;
3871-
readonly importModuleSpecifierPreference?: "auto" | "relative" | "non-relative";
3871+
readonly importModuleSpecifierPreference?: "shortest" | "external-non-relative" | "relative" | "non-relative";
38723872
/** Determines whether we import `foo/index.ts` as "foo", "foo/index", or "foo/index.js" */
38733873
readonly importModuleSpecifierEnding?: "auto" | "minimal" | "index" | "js";
38743874
readonly allowTextChangesInNewFiles?: boolean;
@@ -8984,7 +8984,7 @@ declare namespace ts.server.protocol {
89848984
* values, with insertion text to replace preceding `.` tokens with `?.`.
89858985
*/
89868986
readonly includeAutomaticOptionalChainCompletions?: boolean;
8987-
readonly importModuleSpecifierPreference?: "auto" | "relative" | "non-relative";
8987+
readonly importModuleSpecifierPreference?: "shortest" | "external-non-relative" | "relative" | "non-relative";
89888988
/** Determines whether we import `foo/index.ts` as "foo", "foo/index", or "foo/index.js" */
89898989
readonly importModuleSpecifierEnding?: "auto" | "minimal" | "index" | "js";
89908990
readonly allowTextChangesInNewFiles?: boolean;
@@ -9360,6 +9360,7 @@ declare namespace ts.server {
93609360
private rootFileNames;
93619361
isOrphan(): boolean;
93629362
updateGraph(): boolean;
9363+
hasRoots(): boolean;
93639364
markAsDirty(): void;
93649365
getScriptFileNames(): string[];
93659366
getLanguageService(): never;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3868,7 +3868,7 @@ declare namespace ts {
38683868
readonly includeCompletionsForModuleExports?: boolean;
38693869
readonly includeAutomaticOptionalChainCompletions?: boolean;
38703870
readonly includeCompletionsWithInsertText?: boolean;
3871-
readonly importModuleSpecifierPreference?: "auto" | "relative" | "non-relative";
3871+
readonly importModuleSpecifierPreference?: "shortest" | "external-non-relative" | "relative" | "non-relative";
38723872
/** Determines whether we import `foo/index.ts` as "foo", "foo/index", or "foo/index.js" */
38733873
readonly importModuleSpecifierEnding?: "auto" | "minimal" | "index" | "js";
38743874
readonly allowTextChangesInNewFiles?: boolean;

0 commit comments

Comments
 (0)