Tue Feb 11
typescript
Author:Noritaka
type ClothSize = 'small' | 'medium' | 'large'; const clothSize: ClothSize = 'large'; const cloth: { color: string; size: ClothSize; } = { color: 'white', size: 'medium', }