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;
}
