Files @ e7e03c203c99
Branch filter:

Location: light9/web/ascoltami/PlayerState.ts

drewp@bigasterisk.com
resize cursor canvas for 400px tall spectros. fix canvas resolution code
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;
}