rambdax
Version:
Extended version of Rambda - a lightweight, faster alternative to Ramda
15 lines (13 loc) • 317 B
text/typescript
import {NonNullableKeys as ONonNullableKeys} from '../Object/NonNullableKeys'
import {ObjectOf} from './ObjectOf'
import {List} from './List'
/**
Get the keys of `L` that are non-nullable
@param L
@returns [[Key]]
@example
```ts
```
*/
export type NonNullableKeys<L extends List> =
ONonNullableKeys<ObjectOf<L>>