DefinitelyTyped/types/is-empty-object/index.d.ts
Richie Bendall 5c5ed22e7b feat: Add typings for is-empty-object (#41548)
Signed-off-by: Richie Bendall <richiebendall@gmail.com>
2020-01-15 17:15:38 -05:00

10 lines
340 B
TypeScript

// Type definitions for is-empty-object 1.1
// Project: https://github.com/gummesson/is-empty-object
// Definitions by: Richie Bendall <https://github.com/Richienb>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 3.0
declare function isEmptyObject(obj: unknown): boolean;
export = isEmptyObject;