export interface EvChargerInfo { evChargerId: string; no: number; operatingInstitution: string; evStationName: string; chargeBoxId: string; evChargerStatus: string; operationStatus: string; chargingPower: string; chargerType: string; protocol: string; lastUpdateDate: Date; address: string; } export interface Option { label: string | undefined; value: V | undefined; } export interface Constants { [key: string]: Constant; } export interface Constant { index: number; text: string; description: string; }