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

13 lines
No EOL
262 B
JavaScript

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