Type alias GetMethodKeys<T>

GetMethodKeys<T>: {
    [K in keyof T]: T[K] extends AnyFunction
        ? ExcludeStringValues<T, K>
        : never
}[keyof T]

GetMethodKeys Extracts the keys of an object T where the value is a function type.

Type Parameters

  • T

    The type to extract method keys from.

Returns

The keys of T where the value is a function type.

Generated using TypeDoc