DefinitelyTyped/types/object-keys/index.d.ts

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;