UNPKG

@greenactionstudio/ocpp-types

Version:

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

13 lines (10 loc) 196 B
import { DataTransferStatus } from './'; export type req = { vendorId: string; messageId?: string; data?: string; }; export type conf = { status: DataTransferStatus; data?: string; };