10 lines
252 B
TypeScript
10 lines
252 B
TypeScript
import { RemoteVideoRequest } from './remote-video-request.model'
|
|
|
|
export interface RemoteVideoRemoveData {
|
|
uuid: string
|
|
}
|
|
|
|
export interface RemoteVideoRemoveRequest extends RemoteVideoRequest {
|
|
type: 'remove-video'
|
|
data: RemoteVideoRemoveData
|
|
}
|