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

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 { }