Make album detail columns customizable

This commit is contained in:
jeffvli 2023-08-08 08:28:40 -07:00
parent 13d6758500
commit 3f813b1a26
4 changed files with 86 additions and 65 deletions

View file

@ -26,7 +26,13 @@ export type CardRoute = {
slugs?: RouteSlug[];
};
export type TableType = 'nowPlaying' | 'sideQueue' | 'sideDrawerQueue' | 'songs' | 'fullScreen';
export type TableType =
| 'nowPlaying'
| 'sideQueue'
| 'sideDrawerQueue'
| 'songs'
| 'fullScreen'
| 'albumDetail';
export type CardRow<T> = {
arrayProperty?: string;