mirror of
https://github.com/advplyr/audiobookshelf-app.git
synced 2025-07-02 01:54:44 +02:00
13 lines
325 B
JavaScript
13 lines
325 B
JavaScript
|
import Vue from 'vue'
|
||
|
import { AbsAudioPlayer } from './AbsAudioPlayer'
|
||
|
import { AbsDownloader } from './AbsDownloader'
|
||
|
import { AbsFileSystem } from './AbsFileSystem'
|
||
|
import { Capacitor } from '@capacitor/core'
|
||
|
|
||
|
Vue.prototype.$platform = Capacitor.getPlatform()
|
||
|
|
||
|
export {
|
||
|
AbsAudioPlayer,
|
||
|
AbsDownloader,
|
||
|
AbsFileSystem
|
||
|
}
|