import type { CallAction, OCPPVersion } from '@citrineos/types'; import { MessageState } from '../messages/index.js'; /** * Interface for usage in the {@link AsRequestHandler} and {@link AsResponseHandler} decorators. */ export interface IHandlerMetadata { protocol: OCPPVersion; action: CallAction; type: MessageState; }