UNPKG

@greenactionstudio/ocpp-types

Version:

A centralized library of Open Charge Point Protocol (OCPP) types for use in other projects.

12 lines (9 loc) 231 B
import { IdToken, RemoteStartStopStatus, ChargingProfile } from './'; export type req = { idTag: IdToken; connectorId?: number; chargingProfile?: ChargingProfile; }; export type conf = { status: RemoteStartStopStatus; };