mirror of
https://github.com/advplyr/audiobookshelf-app.git
synced 2025-06-22 05:13:35 +02:00
15 lines
No EOL
290 B
JavaScript
15 lines
No EOL
290 B
JavaScript
import { registerPlugin, WebPlugin } from '@capacitor/core';
|
|
|
|
class AbsFileSystemWeb extends WebPlugin {
|
|
constructor() {
|
|
super()
|
|
}
|
|
|
|
async selectFolder() { }
|
|
}
|
|
|
|
const AbsFileSystem = registerPlugin('AbsFileSystem', {
|
|
web: () => new AbsFileSystemWeb()
|
|
})
|
|
|
|
export { AbsFileSystem } |