mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
12 lines
371 B
TypeScript
12 lines
371 B
TypeScript
// Type definitions for is-object 1.0
|
|
// Project: https://github.com/ljharb/is-object
|
|
// Definitions by: Wilson Hobbs <https://github.com/wbhob>
|
|
// Jordan Harband <https://github.com/ljharb>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
export = isObject;
|
|
|
|
declare function isObject(a: any): boolean;
|
|
|
|
declare namespace isObject { }
|