3 lines
277 B
TypeScript
Executable file
3 lines
277 B
TypeScript
Executable file
import type { ServerResponse, IncomingMessage } from 'http';
|
|
import type { Telemetry } from '../../telemetry/storage';
|
|
export declare function getNextErrorFeedbackMiddleware(telemetry: Telemetry): (req: IncomingMessage, res: ServerResponse, next: () => void) => Promise<void>;
|