@ministryofjustice/hmpps-digital-prison-reporting-frontend
Version:
The Digital Prison Reporting Frontend contains templates and code to help display data effectively in UI applications.
11 lines (10 loc) • 352 B
TypeScript
import { ErrorRequestHandler } from 'express';
import { Services } from '../../../types/Services';
declare class ViewReportController {
layoutPath: string;
services: Services;
constructor(layoutPath: string, services: Services);
errorHandler: ErrorRequestHandler;
}
export { ViewReportController };
export default ViewReportController;