mirror of https://github.com/Chocobozzz/PeerTube
12 lines
283 B
TypeScript
12 lines
283 B
TypeScript
|
import { RemoteVideoRequest } from './remote-video-request.model'
|
||
|
|
||
|
export interface RemoteVideoAuthorCreateData {
|
||
|
uuid: string
|
||
|
name: string
|
||
|
}
|
||
|
|
||
|
export interface RemoteVideoAuthorCreateRequest extends RemoteVideoRequest {
|
||
|
type: 'add-author'
|
||
|
data: RemoteVideoAuthorCreateData
|
||
|
}
|