Type alias NonFunctionPropertyNames<T>

NonFunctionPropertyNames<T>: {
    [K in keyof T]: T[K] extends AnyFunction
        ? never
        : K
}[keyof T]

NonFunctionPropertyNames Extracts the property names from type T that are not functions.

Type Parameters

  • T

    The type to extract non-function property names from.

Returns

The non-function property names of T.

Generated using TypeDoc