mirror of
https://github.com/jcreek/BankStatementAnalyser.git
synced 2026-07-12 18:43:49 +00:00
10 lines
196 B
TypeScript
10 lines
196 B
TypeScript
type ChartData = {
|
|
labels: string[];
|
|
datasets: {
|
|
label: string;
|
|
backgroundColor: string;
|
|
borderColor: string;
|
|
borderWidth: number;
|
|
data: number[];
|
|
}[];
|
|
}; |