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