UNPKG

@citrineos/base

Version:

The base module for OCPP v2.0.1 including all interfaces. This module is not intended to be used directly, but rather as a dependency for other modules.

11 lines (10 loc) 266 B
import { CallAction, OCPPVersion } from '../../ocpp/rpc/message'; /** * Interface for usage in {@link AsHandler} decorator. */ export interface IHandlerDefinition { protocol: OCPPVersion; action: CallAction; method: Function; methodName: string; }