declarations
Version:
[](https://www.npmjs.com/package/declarations)
10 lines (9 loc) • 374 B
TypeScript
// 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;
}