UNPKG

agenda-admin

Version:
9 lines (8 loc) 294 B
import { NextFunction, Request, Response } from 'express'; interface ReqQuery { name: string | null; property: string | null; value: any | null; } export declare const overview: (req: Request<any, any, any, ReqQuery>, res: Response, next: NextFunction) => Promise<void>; export {};