Type Alias WritableDataPropertyKeys<T>
WritableDataPropertyKeys: {
[K in WritablePropertyKeys<T>]-?: ContainsCallable<T[K]> extends true
? never
: K
}[WritablePropertyKeys<T>]
[K in WritablePropertyKeys<T>]-?: ContainsCallable<T[K]> extends true
? never
: K
}[WritablePropertyKeys<T>]
Type Parameters
- T extends object
Object type to inspect.
Produces the writable property keys of
Twhose value types contain no callable member.Methods, function-valued properties, optional function-valued properties, and unions containing a callable type are excluded. Properties typed as
anyare also conservatively excluded.