Magek Framework
    Preparing search index...

    Interface Class<TReflected>

    Interface to get information from a TReflected class.

    Usage:

    function printName<T>(cls : Class<T>){
    console.log(cls.name)
    }

    printName(Person) // Prints "Person"
    interface Class<TReflected> {
        new Class(...args: any[]): TReflected;
    }

    Type Parameters

    • TReflected

    Hierarchy (View Summary)

    Index

    Constructors

    Constructors