Skip to main content
Module

x/scaffold/src/deps/types.ts>NonNegativeInteger

scaffold your next project with style and 💗
Latest
type alias NonNegativeInteger
import { type NonNegativeInteger } from "https://deno.land/x/scaffold@0.3.0/src/deps/types.ts";

A non-negative (0 <= x < ∞) number that is an integer. Equivalent to NonNegative<Integer<T>>.

You can't pass a bigint as they are already guaranteed to be integers, instead use NonNegative<T>.

Use-case: Validating and documenting parameters.

Examples

Example 1

import type {NonNegativeInteger} from 'type-fest';

declare function setLength<T extends number>(length: NonNegativeInteger<T>): void;

Type Parameters

T extends number
definition: NonNegative<Integer<T>>