@aigamo/hydrangean-diva
Version:
An open-source online media player that can be deployed to and hosted on GitHub pages.
10 lines (9 loc) • 350 B
TypeScript
import { IPlaylistStore } from '../../media-player.playlists.abstractions/interfaces/IPlaylistStore';
import { ReactElement } from 'react';
interface PlaylistCommandBarProps {
playlist: IPlaylistStore;
}
export declare const PlaylistCommandBar: (({ playlist }: PlaylistCommandBarProps) => ReactElement) & {
displayName: string;
};
export {};