UNPKG

@aigamo/hydrangean-diva

Version:

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

9 lines (8 loc) 379 B
import { IPlaylistListItemStore } from './IPlaylistListItemStore'; export interface IPlaylistListStore { readonly items: IPlaylistListItemStore[]; createItem(name: string): IPlaylistListItemStore; setItems(value: IPlaylistListItemStore[]): void; addItem(item: IPlaylistListItemStore): Promise<void>; removeItem(item: IPlaylistListItemStore): Promise<void>; }