DefinitelyTyped/types/is-obj/index.d.ts
2018-11-16 16:06:58 -08:00

10 lines
322 B
TypeScript

// Type definitions for is-obj 1.0
// Project: https://github.com/sindresorhus/is-obj#readme
// Definitions by: Emily Marigold Klassen <https://github.com/forivall>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.2
export = isObj;
declare function isObj(x: any): x is object;