10126 shaares
287 private links
287 private links
type Subset<Parent, Sub extends Parent> = Sub;
type IconName = 'cars' | 'mars' | 'truck' | 'warning'
type VehicleIconName = Subset<IconName, 'cars' | 'truck' | 'invalidName'>
type Subset<Parent, Sub extends Parent> = Sub;
type IconName = 'cars' | 'mars' | 'truck' | 'warning'
type VehicleIconName = Subset<IconName, 'cars' | 'truck' | 'invalidName'>