mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
15 lines
478 B
TypeScript
15 lines
478 B
TypeScript
// Type definitions for object-keys 1.0
|
|
// Project: https://github.com/ljharb/object-keys#readme
|
|
// Definitions by: Vitor Luiz Cavalcanti <https://github.com/VitorLuizC>
|
|
// Jordan Harband <https://github.com/ljharb>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.2
|
|
|
|
declare function objectKeys(object: object): string[];
|
|
|
|
declare namespace objectKeys {
|
|
function shim(): typeof objectKeys;
|
|
}
|
|
|
|
export = objectKeys;
|