mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-21 21:31:12 +08:00
10 lines
373 B
TypeScript
10 lines
373 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;
|
|
} |