@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) • 300 B
TypeScript
/**
* Check if the provided value's type is an object with some fields set
*
* @param value - The value to type check
* @returns An indicator specifying if the value provided is an object with some fields se
*/
export declare const isSetObject: (value: unknown) => value is NonNullable<object>;