advplyr.audiobookshelf-app/plugins/capacitor/AbsDownloader.js

13 lines
262 B
JavaScript
Raw Normal View History

import { registerPlugin, WebPlugin } from '@capacitor/core';
class AbsDownloaderWeb extends WebPlugin {
constructor() {
super()
}
}
const AbsDownloader = registerPlugin('AbsDownloader', {
web: () => new AbsDownloaderWeb()
})
export { AbsDownloader }