// Type definitions for is-empty 1.2 // Project: https://github.com/ianstormtaylor/is-empty // Definitions by: Stanislav Termosa // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped /** * Test if a value is empty */ declare function isEmpty(value: any): boolean; export = isEmpty;