mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-04 18:29:27 +02:00
11 lines
249 B
TypeScript
11 lines
249 B
TypeScript
export type RemoteVideoEventType = 'views' | 'likes' | 'dislikes'
|
|
|
|
export interface RemoteVideoEventData {
|
|
uuid: string
|
|
eventType: RemoteVideoEventType
|
|
count: number
|
|
}
|
|
|
|
export interface RemoteVideoEventRequest {
|
|
data: RemoteVideoEventData
|
|
}
|