import { type IsNever } from "https://deno.land/std@0.209.0/testing/types.ts";
Checks if type T
is the never
type.
definition: [T] extends [never] ? true : false
import { type IsNever } from "https://deno.land/std@0.209.0/testing/types.ts";
Checks if type T
is the never
type.