@ministryofjustice/hmpps-digital-prison-reporting-frontend
Version:
The Digital Prison Reporting Frontend contains templates and code to help display data effectively in UI applications.
15 lines (14 loc) • 596 B
TypeScript
import { RequestHandler } from 'express';
import { Services } from '../../../../types/Services';
import MissingReportService from '../../../../services/missingReport/missingReportService';
import { ReportingService } from '../../../../services';
declare class MissingReportFormController {
layoutPath: string;
missingReportService: MissingReportService;
reportingService: ReportingService;
constructor(layoutPath: string, services: Services);
GET: RequestHandler;
POST: RequestHandler;
}
export { MissingReportFormController };
export default MissingReportFormController;