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

3 lines (2 loc) 126 B
export declare const objectKeys: <TObject extends object>(object: TObject) => (keyof TObject)[]; export default objectKeys;