UNPKG

declarations

Version:

[![npm version](https://badge.fury.io/js/declarations.svg)](https://www.npmjs.com/package/declarations)

10 lines (9 loc) 374 B
// Type definitions for is-plain-object // Project: https://github.com/jonschlinkert/is-plain-object // Definitions by: Kevin Zeng <https://github.com/zengfenfei/> // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped declare module "is-plain-object" { namespace isPlainObject {} function isPlainObject(obj: any): boolean; export = isPlainObject; }