* Instantiates a global type that is generic with some element type, and returns that instantiation.
(genericGlobalType, typeArguments)
| 60783 | * Instantiates a global type that is generic with some element type, and returns that instantiation. |
| 60784 | */ |
| 60785 | function createTypeFromGenericGlobalType(genericGlobalType, typeArguments) { |
| 60786 | return genericGlobalType !== emptyGenericType ? createTypeReference(genericGlobalType, typeArguments) : emptyObjectType; |
| 60787 | } |
| 60788 | function createTypedPropertyDescriptorType(propertyType) { |
| 60789 | return createTypeFromGenericGlobalType(getGlobalTypedPropertyDescriptorType(), [propertyType]); |
| 60790 | } |
no test coverage detected
searching dependent graphs…