IfAny<T, TypeIfAny, TypeIfNotAny>
IfAny<
T
,TypeIfAny
,TypeIfNotAny
> =IsAny
<T
> extendstrue
?TypeIfAny
:TypeIfNotAny
Defined in: packages/react-querybuilder/src/types/type-fest/if-any.ts:21
An if-else-like type that resolves depending on whether the given type is any
.
Type Parameters
Type Parameter | Default type |
---|---|
T | - |
TypeIfAny | true |
TypeIfNotAny | false |
See
Example
import type {IfAny} from 'type-fest';
type ShouldBeTrue = IfAny<any>;
//=> true
type ShouldBeBar = IfAny<'not any', 'foo', 'bar'>;
//=> 'bar'
caution
API documentation is generated from the latest commit on the main
branch. It may be somewhat inconsistent with official releases of React Query Builder.