“TypeScript Jeden z tablicy” Kod odpowiedzi

TypeScript Jeden z elementów tablicy

const animals = ['cat', 'dog', 'mouse'] as const
type Animal = typeof animals[number]

// type Animal = 'cat' | 'dog' | 'mouse'
Gubo97000

TypeScript Jeden z tablicy

function stringLiterals<T extends string>(...args: T[]): T[] { return args; }
type ElementType<T extends ReadonlyArray<unknown>> = T extends ReadonlyArray<infer ElementType> ? ElementType : never;

const values = stringLiterals('A', 'B');
type Foo = ElementType<typeof values>;

const v1: Foo = 'A' // This should work
const v2: Foo = 'D' // This should give me an error since 'D' doesn't exist in values
baruchiro

Odpowiedzi podobne do “TypeScript Jeden z tablicy”

Pytania podobne do “TypeScript Jeden z tablicy”

Więcej pokrewnych odpowiedzi na “TypeScript Jeden z tablicy” w TypeScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu