(type, symbol, originalSymbol, moduleSpecifier)
| 77209 | return createAnonymousType(anonymousSymbol, memberTable, ts.emptyArray, ts.emptyArray, ts.emptyArray); |
| 77210 | } |
| 77211 | function getTypeWithSyntheticDefaultOnly(type, symbol, originalSymbol, moduleSpecifier) { |
| 77212 | var hasDefaultOnly = isOnlyImportedAsDefault(moduleSpecifier); |
| 77213 | if (hasDefaultOnly && type && !isErrorType(type)) { |
| 77214 | var synthType = type; |
| 77215 | if (!synthType.defaultOnlyType) { |
| 77216 | var type_5 = createDefaultPropertyWrapperForModule(symbol, originalSymbol); |
| 77217 | synthType.defaultOnlyType = type_5; |
| 77218 | } |
| 77219 | return synthType.defaultOnlyType; |
| 77220 | } |
| 77221 | return undefined; |
| 77222 | } |
| 77223 | function getTypeWithSyntheticDefaultImportType(type, symbol, originalSymbol, moduleSpecifier) { |
| 77224 | var _a; |
| 77225 | if (allowSyntheticDefaultImports && type && !isErrorType(type)) { |
no test coverage detected
searching dependent graphs…