type alias AssertFalseimport { type AssertFalse } 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 false. ExamplesExample 1 import { AssertFalse, IsNever } from "https://deno.land/std@0.181.0/testing/types.ts"; const result = 1 as string | number | null; type doTest = AssertFalse<IsNever<typeof result>>; Type ParametersT extends falsedefinition: never