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