mirror of
https://github.com/advplyr/audiobookshelf-app.git
synced 2025-07-01 17:44:45 +02:00
13 lines
No EOL
262 B
JavaScript
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 } |