feat(frontend): render simple listen report

This commit is contained in:
Julian Tölle 2020-05-09 19:22:43 +02:00
parent 3828b841c2
commit ebc079435d
8 changed files with 562 additions and 1 deletions

View file

@ -0,0 +1,4 @@
export interface ListenReportItem {
date: Date;
count: number;
}

View file

@ -0,0 +1,5 @@
export interface ListenReportOptions {
timeFrame: "day" | "week" | "month" | "year";
timeStart: Date;
timeEnd: Date;
}