//#region src/is-not-empty.d.ts /** * The inverse of the `isEmptyObject` function * * @param value - The value to type check * @returns An indicator specifying if the value provided is **NOT** of type `null` or `undefined` or `{}` */ declare const isNotEmpty: (value: unknown) => value is NonNullable; //#endregion export { isNotEmpty }; //# sourceMappingURL=is-not-empty.d.mts.map