Skip to main content

IsBooleanLiteral<T>

IsBooleanLiteral<T> = LiteralCheck<T, boolean>

Defined in: packages/react-querybuilder/src/types/type-fest/is-literal.ts:209

Returns a boolean for whether the given type is a true or false literal type.

Useful for:

  • providing strongly-typed functions when given literal arguments
  • type utilities, such as when constructing parsers and ASTs

Type Parameters

Type Parameter
T

Example

import type {IsBooleanLiteral} from 'type-fest';

const id = 123;

type GetId<AsString extends boolean> =
IsBooleanLiteral<AsString> extends true
? AsString extends true
? `${typeof id}`
: typeof id
: number | string;

function getId<AsString extends boolean = false>(options?: {asString: AsString}) {
return (options?.asString ? `${id}` : id) as GetId<AsString>;
}

const numberId = getId();
//=> 123

const stringId = getId({asString: true});
//=> '123'

declare const runtimeBoolean: boolean;
const eitherId = getId({asString: runtimeBoolean});
//=> number | string

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.