24 lines
343 B
TypeScript
24 lines
343 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
|
|
|
|
orderedItems?: string[]
|
|
|
|
partOf?: string
|
|
next?: string
|
|
first?: string
|
|
|
|
to?: string[]
|
|
}
|