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.

13 lines (12 loc) 425 B
import { Request, Response } from 'express'; import { Services } from '../../../types/Services'; type ReportConfig = { reportId: string; id: string; name: string; reportName: string; description: string; type: string; }; export declare const renderSubscriptionToggleAsHtml: (req: Request, res: Response, schedule: string, reportConfig: ReportConfig, services: Services) => Promise<string>; export {};