UNPKG

@aigamo/hydrangean-diva

Version:

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

10 lines (9 loc) 341 B
import { IPlaylistStore } from '../../media-player.playlists.abstractions/interfaces/IPlaylistStore'; import { ReactElement } from 'react'; interface PlaylistSectionProps { playlist: IPlaylistStore; } export declare const PlaylistSection: (({ playlist }: PlaylistSectionProps) => ReactElement) & { displayName: string; }; export {};