feat: add artist views
This commit is contained in:
@@ -1,10 +1,13 @@
|
||||
import { StackNavigationProp } from '@react-navigation/stack';
|
||||
import { SectionArtistItem } from 'store/music/selectors';
|
||||
import { Album } from 'store/music/types';
|
||||
|
||||
export type StackParams = {
|
||||
[key: string]: Record<string, unknown> | undefined;
|
||||
[key: string]: Record<string, unknown> | object | undefined;
|
||||
Albums: undefined;
|
||||
Album: { id: string, album: Album };
|
||||
Artists: undefined;
|
||||
Artist: SectionArtistItem;
|
||||
Playlists: undefined;
|
||||
Playlist: { id: string };
|
||||
RecentAlbums: undefined;
|
||||
|
||||
Reference in New Issue
Block a user