view web/ascoltami/PlayerState.ts @ 2450:a4052905ca7d default tip

notes about how rdfdb syncs, or should sync
author drewp@bigasterisk.com
date Mon, 03 Jun 2024 23:01:54 -0700
parents 06da5db2fafe
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;
}