advplyr.audiobookshelf-app/plugins/capacitor/AbsFileSystem.js

15 lines
290 B
JavaScript
Raw Normal View History

import { registerPlugin, WebPlugin } from '@capacitor/core';
class AbsFileSystemWeb extends WebPlugin {
constructor() {
super()
}
async selectFolder() { }
}
const AbsFileSystem = registerPlugin('AbsFileSystem', {
web: () => new AbsFileSystemWeb()
})
export { AbsFileSystem }