mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
10 lines
340 B
TypeScript
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;
|