Refactor capacitor plugins, clean up and organize android plugin classes

This commit is contained in:
advplyr 2022-04-04 19:08:27 -05:00
parent cc744bb975
commit 77ef0c119b
26 changed files with 376 additions and 385 deletions

View 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 }