(self: ReadonlyRecord<K, A>)
| 910 | * @since 2.0.0 |
| 911 | */ |
| 912 | export const keys = <K extends string | symbol, A>(self: ReadonlyRecord<K, A>): Array<K & string> => |
| 913 | Object.keys(self) as Array<K & string> |
| 914 | |
| 915 | /** |
| 916 | * Retrieve the values of a given record as an array. |
no test coverage detected