12 lines
174 B
TypeScript
12 lines
174 B
TypeScript
interface RegisterOptions {
|
|
registerHook: any
|
|
peertubeHelpers: any
|
|
}
|
|
|
|
interface Video {
|
|
isLive: boolean
|
|
isLocal: boolean
|
|
originInstanceUrl: string
|
|
uuid: string
|
|
}
|