type alias U.Checkimport { type U } from "https://deno.land/x/rimbu@0.13.1/typical/index.ts"; const { Check } = U; Returns never if the given type is false, otherwise unknown. ExamplesExample 1 Check<IsEven<4>> => unknown Check<IsEven<5>> => never Type ParametersVdefinition: V extends false ? never : unknown