UNPKG

ts-object-keys

Version:

Fix for Object.keys, which normally just returns an array of strings, which is not good when you care about strong typing

5 lines (3 loc) 146 B
export const objectKeys = <TObject extends object>(object: TObject) => Object.keys(object) as Array<keyof TObject>; export default objectKeys;