mirror of
https://github.com/Mastermindzh/tidal-hifi.git
synced 2025-05-15 07:12:59 +02:00
9 lines
186 B
TypeScript
9 lines
186 B
TypeScript
import { TidalState } from "../models/tidalState";
|
|
|
|
// This object is globally mutated
|
|
export const tidalState: TidalState = {
|
|
status: "Stopped",
|
|
repeat: "Off",
|
|
shuffle: false,
|
|
};
|