Finite<T>
Finite<
T
> =T
extendsPositiveInfinity
|NegativeInfinity
?never
:T
Defined in: packages/react-querybuilder/src/types/type-fest/numeric.ts:57
A finite number
.
You can't pass a bigint
as they are already guaranteed to be finite.
Use-case: Validating and documenting parameters.
Note: This can't detect NaN
, please upvote this issue if you want to have this type as a built-in in TypeScript.
Type Parameters
Type Parameter |
---|
T extends number |
Example
import type {Finite} from 'type-fest';
declare function setScore<T extends number>(length: Finite<T>): void;
caution
API documentation is generated from the latest commit on the main
branch. It may be somewhat inconsistent with official releases of React Query Builder.