Uneventful
    Preparing search index...

    Type Alias Type<T>Experimental

    Type: InstanceType<T> extends { __new__(ob: any): R }
        ? unknown extends R ? InstanceType<T> : R
        : InstanceType<T>

    Get the type of extension that will be returned by the static API.

    Defaults to the subclass instance type, but can be changed by overriding __new__() to return a different type.

    Type Parameters