aboutsummaryrefslogblamecommitdiffhomepage
path: root/shared/models/activitypub/objects/playlist-element-object.ts
blob: b85e4fe194108dec0519448cd3d5eb772b7ce822 (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                        
export interface PlaylistElementObject {
  id: string
  type: 'PlaylistElement'

  url: string
  position: number

  startTimestamp?: number
  stopTimestamp?: number
}