mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-04 18:29:27 +02:00
26 lines
383 B
TypeScript
26 lines
383 B
TypeScript
import { ActivityIconObject } from './common-objects'
|
|
|
|
export interface PlaylistObject {
|
|
id: string
|
|
type: 'Playlist'
|
|
|
|
name: string
|
|
content: string
|
|
uuid: string
|
|
|
|
totalItems: number
|
|
attributedTo: string[]
|
|
|
|
icon?: ActivityIconObject
|
|
|
|
published: string
|
|
updated: string
|
|
|
|
orderedItems?: string[]
|
|
|
|
partOf?: string
|
|
next?: string
|
|
first?: string
|
|
|
|
to?: string[]
|
|
}
|