import Vehicle from '../entity/Vehicle'; import TransformerInterface from '../../common/interfaces/TransformerInterface'; import AdapterInterface from '../../common/interfaces/AdapterInterface'; export default interface VehicleAdapterInterface extends AdapterInterface, TransformerInterface { }