mirror of
https://github.com/Mastermindzh/tidal-hifi.git
synced 2025-04-19 03:03:02 +02:00
14 lines
215 B
TypeScript
14 lines
215 B
TypeScript
export interface TidalController {
|
|
/**
|
|
* Play or pause the current media
|
|
*/
|
|
playPause(): void;
|
|
|
|
/**
|
|
* Hook up the controller to the current web instance
|
|
*/
|
|
hookup(): void;
|
|
|
|
goToHome(): void;
|
|
}
|