minimal adjustments
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / @eslint / eslintrc / node_modules / type-fest / source / literal-union.d.ts
1 import {Primitive} from './basic';
2
3 /**
4 Allows creating a union type by combining primitive types and literal types without sacrificing auto-completion in IDEs for the literal type part of the union.
5
6 Currently, when a union type of a primitive type is combined with literal types, TypeScript loses all information about the combined literals. Thus, when such type is used in an IDE with autocompletion, no suggestions are made for the declared literals.
7
8 This type is a workaround for [Microsoft/TypeScript#29729](https://github.com/Microsoft/TypeScript/issues/29729). It will be removed as soon as it's not needed anymore.
9
10 @example
11 ```
12 import {LiteralUnion} from 'type-fest';
13
14 // Before
15
16 type Pet = 'dog' | 'cat' | string;
17
18 const pet: Pet = '';
19 // Start typing in your TypeScript-enabled IDE.
20 // You **will not** get auto-completion for `dog` and `cat` literals.
21
22 // After
23
24 type Pet2 = LiteralUnion<'dog' | 'cat', string>;
25
26 const pet: Pet2 = '';
27 // You **will** get auto-completion for `dog` and `cat` literals.
28 ```
29  */
30 export type LiteralUnion<
31         LiteralType extends BaseType,
32         BaseType extends Primitive
33 > = LiteralType | (BaseType & {_?: never});