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