InstanceType<T>
fails when returning instance from constructor
#61530
Labels
Question
An issue which isn't directly actionable in code
🔎 Search Terms
Using
InstanceType<T>
with a generic constructor type results in a type error where TypeScript rejects the return value ofnew Ctor()
as not being compatible withInstanceType<T>
, even when the constructor is the class itself and not a subclass.🕗 Version & Regression Information
InstanceType
⏯ Playground Link
https://www.typescriptlang.org/play/?#code/MYGwhgzhAEDKD2BbApgYXFaBvAUNaw8AdhAC4BOArsKfOQBQCU2AvjmzqQJ4AOycSNBgipiZKjTrQAvNjzQiyAO7QmALgEp0kCAG52+nADNKRGgEtiBcsjClkCLcIA88gCrRkAD3tEAJjCOQjqiJBTUtOQ4AHz0qJEabowaAJJhYGbIbrzIzm7Rcvg2pJTkRArK0PF0TLrQAPT10ACi5OR0iTnQAORB2lDd0OYwRPCk0DrmAOZEYABGIPy00Nx8PWlkGcBZOXnR3QB0qgBMAMzHx4wH7Dg4hGFD6Zky1rb2fcL0HzqMukA
💻 Code
🙁 Actual behavior
When trying to return an instance of a class using a generic constructor type with
InstanceType<T>
, TypeScript produces the following error:This happens even when the provided constructor
T
is the class itself (SomeClass
), without involving any subclassing or other complex types.I understand why TypeScript is complaining: the function body always creates a
SomeClass
instance, which might not match a derived class’s instance type. But conceptually,new Ctor()
should produce an object of typeCtor
itself—even ifCtor
extendsSomeClass
. The compiler is effectively saying “SomeClass
might not be assignable to a derived class,” but at runtime, we really do get the instance of that subclass.🙂 Expected behavior
The TypeScript compiler should correctly recognize that:
is valid when the return type is
InstanceType<T>
, whereT
is a constructor function (new (): SomeClass
). The returned value should matchInstanceType<T>
when the constructor type is used directly.Additional information about the issue
No response
The text was updated successfully, but these errors were encountered: