augment-vir - v32.2.2
    Preparing search index...

    Type Alias Class<T, Arguments>

    Matches a class.

    Copied from the Class type in the type-fest package so that this package's public types do not depend on type-fest (see the note in type-checks.ts).

    type Class<T, Arguments extends unknown[] = any[]> = {
        prototype: Pick<T, keyof T>;
        new (...constructorArguments: Arguments): T;
    }

    Type Parameters

    • T
    • Arguments extends unknown[] = any[]
    • Parameters

      Returns T

    Index
    prototype: Pick<T, keyof T>