type-fest
Version:
A collection of essential TypeScript types
29 lines (20 loc) • 644 B
TypeScript
import type {IsUnknown} from './is-unknown.d.ts';
/**
An if-else-like type that resolves depending on whether the given type is `unknown`.
@deprecated This type will be removed in the next major version. Use the {@link If} type instead.
@see {@link IsUnknown}
@example
```
import type {IfUnknown} from 'type-fest';
type ShouldBeTrue = IfUnknown<unknown>;
//=> true
type ShouldBeBar = IfUnknown<'not unknown', 'foo', 'bar'>;
//=> 'bar'
```
@category Type Guard
@category Utilities
*/
export type IfUnknown<T, TypeIfUnknown = true, TypeIfNotUnknown = false> = (
IsUnknown<T> extends true ? TypeIfUnknown : TypeIfNotUnknown
);
export {};