playlist-element-object.ts 168 B

12345678910
  1. export interface PlaylistElementObject {
  2. id: string
  3. type: 'PlaylistElement'
  4. url: string
  5. position: number
  6. startTimestamp?: number
  7. stopTimestamp?: number
  8. }