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