refator: use TimeOptions for TopArtists report

This commit is contained in:
Julian Tölle 2020-07-12 17:16:33 +02:00
parent ad0d197105
commit 5bc76f23d0
9 changed files with 62 additions and 46 deletions

View file

@ -0,0 +1,7 @@
import { TimePreset } from "./time-preset.enum";
export interface TimeOptions {
timePreset: TimePreset;
customTimeStart: Date;
customTimeEnd: Date;
}

View file

@ -1,7 +1,6 @@
import { TimePreset } from "./time-preset.enum";
import { TimeOptions } from "./time-options";
export interface TopArtistsOptions {
timePreset: TimePreset;
customTimeStart: Date;
customTimeEnd: Date;
time: TimeOptions;
}