type alias AssertTrue
Asserts at compile time that the provided type argument's type resolves to true.
Examples
Example 1
Example 1
import { AssertTrue, Has, IsNullable } from "@std/testing/types"; const result = 1 as string | number | null; type doTest = AssertTrue<Has<typeof result, string> | IsNullable<typeof result>>;
Type Parameters
T extends trueDefinition
never