@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) • 656 B
TypeScript
import { AutomaticBookmarkStoreData } from '../../../../types/Bookmark';
import { Services } from '../../../../types/Services';
export interface BookmarksByCaseload {
[caseLoadId: string]: AutomaticBookmarkStoreData[];
}
export declare const preBookmarkReportsByRoleId: (userId: string, activeCaseLoadId: string, services: Services, bookmarksByCaseload?: BookmarksByCaseload) => Promise<AutomaticBookmarkStoreData[]>;
declare const _default: {
preBookmarkReportsByRoleId: (userId: string, activeCaseLoadId: string, services: Services, bookmarksByCaseload?: BookmarksByCaseload) => Promise<AutomaticBookmarkStoreData[]>;
};
export default _default;