mirror of
https://github.com/advplyr/audiobookshelf-app.git
synced 2025-06-26 07:08:45 +02:00
13 lines
262 B
JavaScript
13 lines
262 B
JavaScript
|
import { registerPlugin, WebPlugin } from '@capacitor/core';
|
||
|
|
||
|
class AbsFileSystemWeb extends WebPlugin {
|
||
|
constructor() {
|
||
|
super()
|
||
|
}
|
||
|
}
|
||
|
|
||
|
const AbsFileSystem = registerPlugin('AbsFileSystem', {
|
||
|
web: () => new AbsFileSystemWeb()
|
||
|
})
|
||
|
|
||
|
export { AbsFileSystem }
|