Mercurial > code > home > repos > light9
view 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 |
line wrap: on
line source
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; }