mirror of
https://github.com/advplyr/audiobookshelf-app.git
synced 2026-08-04 02:48:54 +02:00
Refactor capacitor plugins, clean up and organize android plugin classes
This commit is contained in:
@@ -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 }
|
||||
Reference in New Issue
Block a user