@storm-stack/types
Version:
⚡ The storm-stack monorepo contains utility applications, tools, and various libraries to create modern and scalable web applications.
9 lines (8 loc) • 325 B
TypeScript
/**
* Check if the provided value's type is `null` or `undefined`
*
* @param value - The value to type check
* @returns An indicator specifying if the value provided is of type `null` or `undefined`
*/
export declare const isEmpty: (value: unknown) => boolean;
export declare const isEmptyAnything: (value: any) => any;