@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) • 568 B
TypeScript
export = mockLineChartData;
declare const mockLineChartData: {
id: string;
data: {
details: {
headlines: never[];
meta: {
label: string;
value: string;
}[];
};
chart: {
type: string;
unit: string;
data: {
labels: string[];
datasets: {
label: string;
data: number[];
total: number;
}[];
};
};
};
}[];