mirror of
https://github.com/sudoxnym/audiobookshelf-atv.git
synced 2026-04-14 19:46:30 +00: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 } |