@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
import { Float } from "../utility-types/number";
/**
* Check if the provided value's type is a float
*
* @param value - The value to type check
* @returns An indicator specifying if the value provided is of type `number` and is a float
*/
export declare const isFloat: <T extends number>(value: T) => value is Float<T>;