Files @ 2ce77421c0b7
Branch filter:

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

drewp@bigasterisk.com
put a big time display on ascoltami
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;
}