UNPKG

jsm-core

Version:
10 lines (9 loc) 390 B
import { NextFunction, Request, Response } from 'express'; /** * @description Attach the calling service to req.attached_entities * @param {*} req Express req Object * @param {*} res Express res Object * @param {*} next Express next Function */ declare const authenticateService: (req: Request, res: Response, next: NextFunction) => Promise<any>; export default authenticateService;