Logos DX
    Preparing search index...

    Generic constructor type for class-based type operations.

    Enables type-safe operations on constructor functions and class factories.

    function createInstance<T extends ClassType>(ctor: T, ...args: any[]): InstanceType<T>
    
    type ClassType = {
        new: Func;
    }
    Index

    Properties

    Properties

    new: Func