Properly guard for undefined in getTypeReferenceArity
This commit is contained in:
Родитель
2e8d11e9c0
Коммит
4e56fc0d27
|
@ -4979,7 +4979,7 @@ namespace ts {
|
|||
}
|
||||
|
||||
function getTypeReferenceArity(type: TypeReference): number {
|
||||
return type.target.typeParameters.length;
|
||||
return type.target.typeParameters ? type.target.typeParameters.length : 0;
|
||||
}
|
||||
|
||||
// Get type from reference to class or interface
|
||||
|
|
Загрузка…
Ссылка в новой задаче