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