diff options
author | Hailey <me@haileyok.com> | 2024-08-15 11:23:48 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-15 11:23:48 -0700 |
commit | 11061b628ef5b5805c6435155ca2a571001e4643 (patch) | |
tree | d1e3c672d225592af7e1341332c6c6aeb979f216 /modules/expo-bluesky-swiss-army/src/HLSDownload/index.tsx | |
parent | b9975697e22ef729e60b9111883127961258445b (diff) | |
download | voidsky-11061b628ef5b5805c6435155ca2a571001e4643.tar.zst |
[Video] Download videos (#4886)
Co-authored-by: Samuel Newman <10959775+mozzius@users.noreply.github.com>
Diffstat (limited to 'modules/expo-bluesky-swiss-army/src/HLSDownload/index.tsx')
-rw-r--r-- | modules/expo-bluesky-swiss-army/src/HLSDownload/index.tsx | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/modules/expo-bluesky-swiss-army/src/HLSDownload/index.tsx b/modules/expo-bluesky-swiss-army/src/HLSDownload/index.tsx new file mode 100644 index 000000000..93c50497f --- /dev/null +++ b/modules/expo-bluesky-swiss-army/src/HLSDownload/index.tsx @@ -0,0 +1,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 + } +} |