UNPKG

@storm-stack/types

Version:

⚡ The storm-stack monorepo contains utility applications, tools, and various libraries to create modern and scalable web applications.

8 lines (7 loc) 291 B
/** * 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 `{}` */ export declare const isNotEmpty: (value: unknown) => value is NonNullable<unknown>;