UNPKG

@ministryofjustice/hmpps-digital-prison-reporting-frontend

Version:

The Digital Prison Reporting Frontend contains templates and code to help display data effectively in UI applications.

13 lines (12 loc) 272 B
export interface DashboardDataResponse { [key: string]: { raw?: number | string | null | undefined; rag?: number; }; } export interface DashboardDataResponseWithRag { [key: string]: { raw: number | string; rag: number; }; }