vlocode-project - v1.40.0-beta-4
    Preparing search index...

    Type Alias Construtable<T>

    Construtable: new (...args: any) => T & {
        name: string;
        prototype: { constructor: Construtable<T> };
    }

    Type representing a constructor function that can be called with new to create an instance of type T

    Type Parameters

    • T