UNPKG

@ministryofjustice/hmpps-digital-prison-reporting-frontend

Version:

The Digital Prison Reporting Frontend contains templates and code to help display data effectively in UI applications.

14 lines (13 loc) 367 B
import { Request, Response } from 'express'; import { Services } from '../../../types/Services'; /** * Unsubscribes a user to a scheduled report * * @param {Request} req * @param {Response} res * @param {Services} services * @return {*} */ export declare const unsubscribe: (req: Request, res: Response, services: Services) => Promise<{ returnTo: any; }>;