9 lines
190 B
TypeScript
9 lines
190 B
TypeScript
|
import { ActivityIdentifierObject } from './common-objects'
|
||
|
|
||
|
export interface VideoChannelObject {
|
||
|
type: 'VideoChannel'
|
||
|
name: string
|
||
|
content: string
|
||
|
uuid: ActivityIdentifierObject
|
||
|
}
|