Type alias PlayingInfos

PlayingInfos: {
    begin: number;
    current: number;
    end: number;
    tracks: number[];
    type: string;
}

PlayingInfos is a structure returned by IController.onPlaying event. It contains the current playing information, updated every second.

Type declaration

  • begin: number
  • current: number
  • end: number
  • tracks: number[]
  • type: string

Generated using TypeDoc