```
type Color = "red" | "blue"; type Quantity = "one" | "two";
type SeussFish = `${Quantity | Color} fish`; // same as // type SeussFish = "one fish" | "two fish" // | "red fish" | "blue fish";