Add LiteralToPrimitive type (#340)

Co-authored-by: Sindre Sorhus <sindresorhus@gmail.com>
This commit is contained in:
Jonah Snider 2022-01-06 02:45:47 -08:00 committed by GitHub
parent 600f0c2486
commit ab210eb5a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 50 additions and 0 deletions

1
index.d.ts vendored
View File

@ -37,6 +37,7 @@ export {SetReturnType} from './source/set-return-type';
export {Asyncify} from './source/asyncify';
export {Simplify} from './source/simplify';
export {Jsonify} from './source/jsonify';
export {LiteralToPrimitive} from './source/literal-to-primitive';
export {
PositiveInfinity,
NegativeInfinity,

View File

@ -114,6 +114,7 @@ Click the type names for complete docs.
- [`ConditionalPick`](source/conditional-pick.d.ts) - Like `Pick` except it selects properties from a shape where the values extend the given `Condition` type.
- [`ConditionalExcept`](source/conditional-except.d.ts) - Like `Omit` except it removes properties from a shape where the values extend the given `Condition` type.
- [`UnionToIntersection`](source/union-to-intersection.d.ts) - Convert a union type to an intersection type.
- [`LiteralToPrimitive`](source/literal-to-primitive.d.ts) - Convert a [literal type](https://www.typescriptlang.org/docs/handbook/2/everyday-types.html#literal-types) to the [primitive type](source/primitive.d.ts) it belongs to.
- [`Stringified`](source/stringified.d.ts) - Create a type with the keys of the given type changed to `string` type.
- [`IterableElement`](source/iterable-element.d.ts) - Get the element type of an `Iterable`/`AsyncIterable`. For example, an array or a generator.
- [`Entry`](source/entry.d.ts) - Create a type that represents the type of an entry of a collection.

36
source/literal-to-primitive.d.ts vendored Normal file
View File

@ -0,0 +1,36 @@
/**
Given a [literal type](https://www.typescriptlang.org/docs/handbook/2/everyday-types.html#literal-types) return the {@link Primitive | primitive type} it belongs to, or `never` if it's not a primitive.
Use-case: Working with generic types that may be literal types.
@example
```
import {LiteralToPrimitive} from 'type-fest';
// No overloads needed to get the correct return type
function plus<T extends number | bigint | string>(x: T, y: T): LiteralToPrimitive<T> {
return x + (y as any);
}
plus('a', 'b'); // string
plus(1, 2); // number
plus(1n, 2n); // bigint
```
@category Type
*/
export type LiteralToPrimitive<T> = T extends number
? number
: T extends bigint
? bigint
: T extends string
? string
: T extends boolean
? boolean
: T extends symbol
? symbol
: T extends null
? null
: T extends undefined
? undefined
: never;

View File

@ -0,0 +1,12 @@
import {expectType} from 'tsd';
import {LiteralToPrimitive} from '../index';
// Simple usage
declare const numberPrimitive: LiteralToPrimitive<123>;
expectType<number>(numberPrimitive);
const symbol = Symbol('foo');
// Union
declare const kitchenSink: LiteralToPrimitive<123 | 123n | 'hello' | true | undefined | typeof symbol | null | {key: string}>;
expectType<number | bigint | string | boolean | undefined | symbol | null>(kitchenSink);