comparison web/ascoltami/PlayerState.ts @ 2439:06da5db2fafe

rewrite ascoltami to use the graph for more playback data
author drewp@bigasterisk.com
date Thu, 30 May 2024 01:08:07 -0700
parents
children
comparison
equal deleted inserted replaced
2438:f2b3cfcc23d3 2439:06da5db2fafe
1 import { NamedNode } from "n3";
2
3 export interface PlayerState {
4 duration: number | null;
5 endOfSong: boolean | null;
6 pausedSongTime: number | null;
7 playing: boolean | null;
8 song: NamedNode<string> | null;
9 wallStartTime: number | null;
10 }