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