UNPKG

@aigamo/hydrangean-diva

Version:

An open-source online media player that can be deployed to and hosted on GitHub pages.

13 lines (12 loc) 431 B
import { ReactElement } from 'react'; import { PlayerStore } from '../stores/PlayerStore'; import { PlayQueueStore } from '../stores/PlayQueueStore'; export declare const bottomBarHeight = 80; interface BottomBarProps { playerStore: PlayerStore; playQueueStore: PlayQueueStore; } export declare const BottomBar: (({ playerStore, playQueueStore }: BottomBarProps) => ReactElement) & { displayName: string; }; export {};