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