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