@aigamo/hydrangean-diva
Version:
An open-source online media player that can be deployed to and hosted on GitHub pages.
10 lines (9 loc) • 323 B
TypeScript
import { PlayerType } from '@aigamo/nostalgic-diva';
import { JSONSchemaType } from 'ajv';
export interface PlayQueueItemDto {
readonly url: string;
readonly type: PlayerType;
readonly videoId: string;
readonly title: string;
}
export declare const PlayQueueItemDtoSchema: JSONSchemaType<PlayQueueItemDto>;