Type Alias MethodKeys<T>

MethodKeys<T>: {
    [P in keyof T]: T[P] extends Function
        ? P
        : never
}[keyof T]

Extract from T the keys of all properties with function values.

Type Parameters

  • T