10 lines
179 B
TypeScript
10 lines
179 B
TypeScript
export interface VideoChannelObject {
|
|
type: 'VideoChannel'
|
|
id: string
|
|
name: string
|
|
content: string
|
|
uuid: string
|
|
published: string
|
|
updated: string
|
|
actor?: string
|
|
}
|