Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

std/testing/types.ts>IsUnknown

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

Checks if type T is the unknown type.

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