@ministryofjustice/hmpps-digital-prison-reporting-frontend
Version:
The Digital Prison Reporting Frontend contains templates and code to help display data effectively in UI applications.
38 lines (37 loc) • 826 B
TypeScript
export = mockBarChartData;
declare const mockBarChartData: {
id: string;
data: {
details: {
meta: {
label: string;
value: string;
}[];
headlines: {
label: string;
value: number;
}[];
};
table: {
head: {
text: string;
}[];
rows: ({
text: string;
} | {
text: number;
})[][];
};
chart: {
type: string;
data: {
labels: string[];
datasets: {
label: string;
data: number[];
total: number;
}[];
};
};
};
}[];