mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
10 lines
322 B
TypeScript
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;
|