1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-04 10:19:35 +02:00
Peertube/shared/models/activitypub/objects/playlist-element-object.ts
2019-03-18 11:17:59 +01:00

10 lines
168 B
TypeScript

export interface PlaylistElementObject {
id: string
type: 'PlaylistElement'
url: string
position: number
startTimestamp?: number
stopTimestamp?: number
}