@ministryofjustice/hmpps-digital-prison-reporting-frontend
Version:
The Digital Prison Reporting Frontend contains templates and code to help display data effectively in UI applications.
22 lines (19 loc) • 399 B
text/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
}
export interface BookmarkStoreData {
reportId: string
variantId?: string
id?: string
type?: ReportType
automatic?: boolean
}