@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) • 312 B
TypeScript
import { Collection } from "../utility-types/base";
/**
* Check if the provided value's type is `Collection`
*
* @param value - The value to type check
* @returns An indicator specifying if the value provided is of type `Collection`
*/
export declare function isCollection(value: any): value is Collection;