@ministryofjustice/hmpps-digital-prison-reporting-frontend
Version:
The Digital Prison Reporting Frontend contains templates and code to help display data effectively in UI applications.
10 lines (9 loc) • 329 B
TypeScript
import { Request, Response } from 'express';
import { BookmarkService } from '../../services';
declare const setUpBookmark: (res: Response, req: Request, bookmarkService: BookmarkService) => {
bookmarkActionEndpoint: string;
showBookmark: boolean;
linkText: string;
linkType: string;
};
export { setUpBookmark };