10 lines
250 B
TypeScript
10 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
|
|
}
|