Files @ 06da5db2fafe
Branch filter:

Location: light9/web/ascoltami/PlayerState.ts - annotation

drewp@bigasterisk.com
rewrite ascoltami to use the graph for more playback data
import { NamedNode } from "n3";

export interface PlayerState {
  duration: number | null;
  endOfSong: boolean | null;
  pausedSongTime: number | null;
  playing: boolean | null;
  song: NamedNode<string> | null;
  wallStartTime: number | null;
}