Skip to content

Commit d0db3cc

Browse files
committed
Format
1 parent c1d487f commit d0db3cc

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/compiler/checker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1121,6 +1121,7 @@ import {
11211121
UnionType,
11221122
UnionTypeNode,
11231123
UniqueESSymbolType,
1124+
usesWildcardTypes,
11241125
usingSingleLineStringWriter,
11251126
VariableDeclaration,
11261127
VariableDeclarationList,
@@ -1143,7 +1144,6 @@ import {
11431144
WithStatement,
11441145
WriterContextOut,
11451146
YieldExpression,
1146-
usesWildcardTypes,
11471147
} from "./_namespaces/ts.js";
11481148
import * as moduleSpecifiers from "./_namespaces/ts.moduleSpecifiers.js";
11491149
import * as performance from "./_namespaces/ts.performance.js";

src/compiler/utilities.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8975,7 +8975,7 @@ export function importSyntaxAffectsModuleResolution(options: CompilerOptions): b
89758975
* @internal
89768976
* Returns true if this option's types array includes "*"
89778977
*/
8978-
export function usesWildcardTypes(options: CompilerOptions): options is CompilerOptions & { types: string[] } {
8978+
export function usesWildcardTypes(options: CompilerOptions): options is CompilerOptions & { types: string[]; } {
89798979
return some(options.types, t => t === "*");
89808980
}
89818981

0 commit comments

Comments
 (0)