Skip to main content
Module

std/testing/types.ts>IsNever

Deno standard library
Go to Latest
The Standard Library has been moved to JSR. See the blog post for details.
type alias IsNever
import { type IsNever } from "https://deno.land/std@0.204.0/testing/types.ts";

Checks if type T is the never type.

definition: [T] extends [never] ? true : false