@aigamo/hydrangean-diva
Version:
An open-source online media player that can be deployed to and hosted on GitHub pages.
11 lines (10 loc) • 525 B
TypeScript
import { IPlaylistListItemStore } from '../../media-player.playlists.abstractions/interfaces/IPlaylistListItemStore';
import { IPlaylistListStore } from '../../media-player.playlists.abstractions/interfaces/IPlaylistListStore';
export declare class PlaylistListItemStore implements IPlaylistListItemStore {
private readonly playlistList;
id: string;
name: string;
constructor(playlistList: IPlaylistListStore, id: string, name: string);
rename(name: string): Promise<void>;
remove(): Promise<void>;
}