mirror of
https://github.com/Mastermindzh/tidal-hifi.git
synced 2025-09-10 05:45:04 +02:00
9 lines
194 B
TypeScript
9 lines
194 B
TypeScript
import { RepeatState } from "./repeatState";
|
|
import { MediaStatus } from "./mediaStatus";
|
|
|
|
export interface MediaPlayerInfo {
|
|
status: MediaStatus;
|
|
shuffle: boolean;
|
|
repeat: RepeatState;
|
|
}
|