IsNegative<T>
IsNegative<
T
> =T
extendsNegative
<T
> ?true
:false
Defined in: packages/react-querybuilder/src/types/type-fest/numeric.ts:228
Returns a boolean for whether the given number is a negative number.
Type Parameters
Type Parameter |
---|
T extends Numeric |
See
Negative
Example
import type {IsNegative} from 'type-fest';
type ShouldBeFalse = IsNegative<1>;
type ShouldBeTrue = IsNegative<-1>;
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.