@ministryofjustice/hmpps-digital-prison-reporting-frontend
Version:
The Digital Prison Reporting Frontend contains templates and code to help display data effectively in UI applications.
29 lines (28 loc) • 589 B
TypeScript
export = mockScoreCards;
declare const mockScoreCards: {
title: string;
scorecards: ({
title: string;
value: number;
rag: {
score: number;
color: string;
};
valueFor: string;
trend: {
direction: number;
value: number;
from: string;
};
} | {
title: string;
value: number;
valueFor: string;
trend: {
direction: number;
value: number;
from: string;
};
rag?: never;
})[];
}[];