I trying to inherit or extend const into another const
Parent.ts
export const Vehicle = {
'Name': 'Honda',
'NoOfWheels': '4'
}
Child.ts
import { Vehicle } from './Parent';
export const HondaVehicle = {
'VehicleName': 'Honda City',
'Color': 'Red',
'EngineCC': '2100cc',
}
So I am expecting output
{
'Name': 'Honda',
'NoOfWheels': '4',
'VehicleName': 'Honda City',
'Color': 'Red',
'EngineCC': '2100cc',
}
So kind help me.