mirror of
https://github.com/advplyr/audiobookshelf-app.git
synced 2025-08-31 15:19:34 +02:00
Refactor capacitor plugins, clean up and organize android plugin classes
This commit is contained in:
parent
cc744bb975
commit
77ef0c119b
26 changed files with 376 additions and 385 deletions
13
plugins/capacitor/AbsFileSystem.js
Normal file
13
plugins/capacitor/AbsFileSystem.js
Normal file
|
@ -0,0 +1,13 @@
|
|||
import { registerPlugin, WebPlugin } from '@capacitor/core';
|
||||
|
||||
class AbsFileSystemWeb extends WebPlugin {
|
||||
constructor() {
|
||||
super()
|
||||
}
|
||||
}
|
||||
|
||||
const AbsFileSystem = registerPlugin('AbsFileSystem', {
|
||||
web: () => new AbsFileSystemWeb()
|
||||
})
|
||||
|
||||
export { AbsFileSystem }
|
Loading…
Add table
Add a link
Reference in a new issue