TypeScript array to string literal type

I currently have both an array of strings and a string literal union type containing the same strings: const furniture = ['chair', 'table', 'lamp']; type Furniture = 'chair' | 'table' | 'lamp'; I...