First commit

This commit is contained in:
Jorge Vargas 2025-03-10 18:11:13 -06:00
commit 5daf2dc6b9
17 changed files with 5649 additions and 0 deletions

10
src/utils/types.ts Normal file
View file

@ -0,0 +1,10 @@
export interface AlbumRow {
name: string
url: string
}
export interface TrackRow {
name: string
url: string
format: string
}