“Vorlage wörtliche Typen” Code-Antworten

Template Literal Syntax

`half of 100 is ${100 / 2}`
Crazy Cobra

Vorlage wörtliche Typen

/** A template literal produces a new string literal type by concatenating
    the contents. When a union is used in the interpolated position, the 
    type is the set of every possible string literal that could be 
    represented by each union member: */

type Taste = "Delicious" | "Spicy";
type Food = "Pizza" | "Meat";
 
type Menu = `${Taste | Food}`;

// Menu will now be one of the following:
// 'DeliciousPizza' | 'DeliciousMeat' | 'SpicyPizza' | 'SpicyMeat'
Stupid Scarab

Ähnliche Antworten wie “Vorlage wörtliche Typen”

Fragen ähnlich wie “Vorlage wörtliche Typen”

Weitere verwandte Antworten zu “Vorlage wörtliche Typen” auf TypeScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen