UNPKG

traffic-monitor-mqtt

Version:

Zentrales Traffic Monitoring via MQTT für Node.js Anwendungen

5 lines (4 loc) 313 B
import { Request, Response, NextFunction } from 'express'; import { EventBatcher } from '../event-batcher'; import { ClientConfig } from '../types'; export declare function createExpressMiddleware(eventBatcher: EventBatcher, clientConfig: ClientConfig): (req: Request, res: Response, next: NextFunction) => void;