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