Skip to main content

IfAny<T, TypeIfAny, TypeIfNotAny>

IfAny<T, TypeIfAny, TypeIfNotAny> = IsAny<T> extends true ? 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 ParameterDefault type
T-
TypeIfAnytrue
TypeIfNotAnyfalse

See

IsAny

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.