Files
DefinitelyTyped/is-plain-object/is-plain-object.d.ts
2016-09-08 16:45:29 +08:00

10 lines
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;
}