Type Utils
    Preparing search index...

    Type Alias ConstructorPropertyNames<T>

    ConstructorPropertyNames: {
        [P in keyof T]: T[P] extends new (...args: any[]) => any ? P : never
    }[keyof T]

    Type Parameters

    • T