import { QrCodeType } from '../enums/qrcode-type'; import { QrCodeStop } from './qrcode/qrcode-stop'; import { QrCodeVehicle } from './qrcode/qrcode-vehicle'; export interface QrCode { encoding: string; // replace with this display: string; // replace with this type: QrCodeType; data?: QrCodeVehicle | QrCodeStop; }