import { CallAction } from '../../ocpp/rpc/message';
/**
 * Interface for usage in {@link AsMessageEndpoint} decorator.
 */
export interface IMessageEndpointDefinition {
    action: CallAction;
    method: (...args: any[]) => any;
    methodName: string;
    bodySchema: object;
    optionalQuerystrings?: Record<string, any>;
}
