[typescript]type alias

Tue Feb 11

typescript

Author:Noritaka

Astro
type ClothSize = 'small' | 'medium' | 'large';
const clothSize: ClothSize = 'large';
const cloth: {
  color: string;
  size: ClothSize;
} = {
  color: 'white',
  size: 'medium',
}

typescript