mcpdog
Version:
MCPDog - Universal MCP Server Manager with Web Interface
5 lines • 455 B
TypeScript
import { IncomingMessage, ServerResponse } from 'http';
import { Request, Response, NextFunction } from 'express';
export declare const createAuthMiddleware: (authToken: string) => (req: IncomingMessage, res: ServerResponse, next: () => void) => void;
export declare const createExpressAuthMiddleware: (authToken: string) => (req: Request, res: Response, next: NextFunction) => void | Response<any, Record<string, any>>;
//# sourceMappingURL=auth.d.ts.map