mirror of
https://github.com/apricote/Listory.git
synced 2026-02-07 18:27:03 +00:00
7 lines
107 B
TypeScript
7 lines
107 B
TypeScript
|
|
import { Artist } from "./artist";
|
||
|
|
|
||
|
|
export interface TopArtistsItem {
|
||
|
|
artist: Artist;
|
||
|
|
count: number;
|
||
|
|
}
|