Skip to main content
Module

std/testing/types.ts>IsExact

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

Checks if type T exactly matches type U.

definition: TupleMatches<AnyToBrand<T>, AnyToBrand<U>> extends true ? TupleMatches<DeepPrepareIsExact<T>, DeepPrepareIsExact<U>> extends true ? true : false : false