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