Skip to main content
Module

std/testing/types.ts>IsUnknown

Deno standard library
Go to Latest
type alias IsUnknown
import { type IsUnknown } from "https://deno.land/std@0.202.0/testing/types.ts";

Checks if type T is the unknown type.

definition: unknown extends T ? ([T] extends [null] ? false : true) : false