@ministryofjustice/hmpps-digital-prison-reporting-frontend
Version:
The Digital Prison Reporting Frontend contains templates and code to help display data effectively in UI applications.
26 lines (25 loc) • 604 B
TypeScript
import { LoadType, ReportType } from './UserReports';
export interface BookmarkedReportData {
reportId: string;
id: string;
reportName: string;
name: string;
description: string;
href: string;
type: ReportType;
loadType: LoadType;
automatic?: boolean | undefined;
}
export interface BookmarkStoreData {
reportId: string;
id: string;
variantId?: string;
type?: ReportType;
automatic?: boolean | undefined;
}
export interface AutomaticBookmarkStoreData {
reportId: string;
variantId: string;
type?: ReportType;
automatic?: boolean;
}