# IsNegative

`type` in `utils` · v0.7.0

<https://docs.seedcord.org/packages/utils/0.7.0/types/is-negative>

Returns a boolean for whether the given number is a negative number.

## Examples

```ts
import type {IsNegative} from 'type-fest';

type ShouldBeFalse = IsNegative<1>;
type ShouldBeTrue = IsNegative<-1>;

 Numeric
```

## Declaration

```ts
type IsNegative<T extends _Numeric> =
    T extends Negative<T> ? true : false;
```

## See also

- [Negative](/packages/utils/0.7.0/types/negative)
