“TypeScript -Typ aus Array” Code-Antworten

TypeScript -Typ aus Array

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

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

TypeScript -Array

let list: number[] = [1, 2, 3];
Plain Panda

Ähnliche Antworten wie “TypeScript -Typ aus Array”

Fragen ähnlich wie “TypeScript -Typ aus Array”

Weitere verwandte Antworten zu “TypeScript -Typ aus Array” auf TypeScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen