@ministryofjustice/hmpps-digital-prison-reporting-frontend
Version:
The Digital Prison Reporting Frontend contains templates and code to help display data effectively in UI applications.
12 lines (11 loc) • 370 B
TypeScript
import { Router } from 'express';
import { Services } from '../../../types/Services';
export declare function Routes({ layoutPath, services }: {
services: Services;
layoutPath: string;
}): Router;
export declare const RequestMissingReportRoutes: ({ services, path, layoutPath, }: {
services: Services;
path: string;
layoutPath: string;
}) => Router;