File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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";
11481148import * as moduleSpecifiers from "./_namespaces/ts.moduleSpecifiers.js";
11491149import * as performance from "./_namespaces/ts.performance.js";
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments