mirror of
https://github.com/advplyr/audiobookshelf-app.git
synced 2025-07-03 02:24:42 +02:00
13 lines
267 B
JavaScript
13 lines
267 B
JavaScript
|
import { registerPlugin, WebPlugin } from '@capacitor/core';
|
||
|
|
||
|
class AbsAudioPlayerWeb extends WebPlugin {
|
||
|
constructor() {
|
||
|
super()
|
||
|
}
|
||
|
}
|
||
|
|
||
|
const AbsAudioPlayer = registerPlugin('AbsAudioPlayer', {
|
||
|
web: () => new AbsAudioPlayerWeb()
|
||
|
})
|
||
|
|
||
|
export { AbsAudioPlayer }
|