type alias Assertimport { type Assert } from "https://dotland.deno.dev/std@0.181.0/testing/types.ts"; Asserts at compile time that the provided type argument's type resolves to the expected boolean literal type. ExamplesExample 1 import { Assert, Has } from "https://deno.land/std@0.181.0/testing/types.ts"; const result = 1 as string | number | null; type doTest = Assert<Has<typeof result, number>, true>; Type ParametersT extends true | falseExpected extends Tdefinition: never