11 lines
271 B
TypeScript
11 lines
271 B
TypeScript
|
import { RemoteVideoRequest } from './remote-video-request.model'
|
||
|
|
||
|
export interface RemoteVideoAuthorRemoveData {
|
||
|
uuid: string
|
||
|
}
|
||
|
|
||
|
export interface RemoteVideoAuthorRemoveRequest extends RemoteVideoRequest {
|
||
|
type: 'remove-author'
|
||
|
data: RemoteVideoAuthorRemoveData
|
||
|
}
|