5 lines
105 B
TypeScript
5 lines
105 B
TypeScript
export interface RemoteVideoRequest {
|
|
type: 'add' | 'update' | 'remove' | 'report-abuse'
|
|
data: any
|
|
}
|