mirror of
https://github.com/advplyr/audiobookshelf-app.git
synced 2026-02-18 23:42:03 +01: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 } |