blob: 93c50497fa1005d5083a8e64ed079b8a0282d336 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
import React from 'react'
import {NotImplementedError} from '../NotImplemented'
import {HLSDownloadViewProps} from './types'
export default class HLSDownloadView extends React.PureComponent<HLSDownloadViewProps> {
constructor(props: HLSDownloadViewProps) {
super(props)
}
static isAvailable(): boolean {
return false
}
async startDownloadAsync(sourceUrl: string): Promise<void> {
throw new NotImplementedError({sourceUrl})
}
render() {
return null
}
}
|