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) 476 B
import { RequestHandler } from 'express'; import { ReportType } from 'src/dpr/types/UserReports'; import { Services } from '../../../../types/Services'; export declare class ViewAsyncController { layoutPath: string; services: Services; constructor(layoutPath: string, services: Services); GET: (type: ReportType) => RequestHandler; resetFilters: RequestHandler; saveDefaultFilterValues: RequestHandler; removeDefaultFilterValues: RequestHandler; }