Leon Wong
Results
1
issues of
Leon Wong
TS source: Car-type.ts ``` export interface Manufacturer { name: string; country: string; heavyDutyTruckSpecialize: boolean; .. } export interface Car { manufacturer: Manufacturer; engine: string; } ``` Bike-type.ts ``` export interface...