[typescript]type literal union

Tue Feb 11

typescript

Author:Noritaka

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

typescript