Files
oki-podcast-reader/src/lib/types.ts
T

21 lines
365 B
TypeScript
Raw Normal View History

2023-02-24 22:59:12 +00:00
export type AudioPlayerElement = HTMLAudioElement | undefined;
2023-02-25 01:40:17 +00:00
export interface AudioMetadata {
title?: string;
artwork?: string;
}
2023-02-24 22:59:12 +00:00
export interface AudioLoadData extends AudioMetadata {
src: string;
}
export interface AudioLoadOptions {
autoplay: boolean;
start_at?: number;
}
export interface UserPreferences {
playback_rate: number;
volume: number;
}