Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/actionify/src/deps/types.ts>Finite

Create and manage your GitHub workflows with TypeScript and Deno.
Latest
type alias Finite
import { type Finite } from "https://deno.land/x/actionify@0.3.0/src/deps/types.ts";

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.

Examples

Example 1

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

declare function setScore<T extends number>(length: Finite<T>): void;

Type Parameters

T extends number
definition: T extends PositiveInfinity | NegativeInfinity ? never : T