@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) • 324 B
TypeScript
import { SelectOption } from "../utility-types/form";
/**
* Check if the provided value's type is SelectOption
*
* @param value - The value to type check
* @returns An indicator specifying if the object provided is of type SelectOption
*/
export declare const isSelectOption: (value: unknown) => value is SelectOption;