blob: 56f8136c283e385c6d90bb720698f96df33857a4 (
plain) (
tree)
|
|
export interface RemoteVideoRequest {
type: RemoteVideoRequestType
data: any
}
export type RemoteVideoRequestType = 'add-video' | 'update-video' | 'remove-video' |
'add-channel' | 'update-channel' | 'remove-channel' |
'report-abuse' |
'add-author' | 'remove-author'
|