UNPKG

478 BTypeScriptView Raw
1// Type definitions for object-keys 1.0
2// Project: https://github.com/ljharb/object-keys#readme
3// Definitions by: Vitor Luiz Cavalcanti <https://github.com/VitorLuizC>
4// Jordan Harband <https://github.com/ljharb>
5// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
6// TypeScript Version: 2.2
7
8declare function objectKeys(object: object): string[];
9
10declare namespace objectKeys {
11 function shim(): typeof objectKeys;
12}
13
14export = objectKeys;