NonConstructorKeys<T>: {
    [P in keyof T]: T[P] extends (new () => any)
        ? never
        : P
}[keyof T]

Type Parameters

  • T