2017-07-10 12:43:21 -05:00
|
|
|
export interface RemoteVideoRequest {
|
2017-10-24 12:41:09 -05:00
|
|
|
type: RemoteVideoRequestType
|
2017-07-10 12:43:21 -05:00
|
|
|
data: any
|
|
|
|
}
|
2017-10-24 12:41:09 -05:00
|
|
|
|
|
|
|
export type RemoteVideoRequestType = 'add-video' | 'update-video' | 'remove-video' |
|
|
|
|
'add-channel' | 'update-channel' | 'remove-channel' |
|
|
|
|
'report-abuse' |
|
|
|
|
'add-author' | 'remove-author'
|