index.js 327 B

123456789
  1. import { registerPlugin } from '@capacitor/core';
  2. import { exposeSynapse } from '@capacitor/synapse';
  3. const Filesystem = registerPlugin('Filesystem', {
  4. web: () => import('./web').then((m) => new m.FilesystemWeb()),
  5. });
  6. exposeSynapse();
  7. export * from './definitions';
  8. export { Filesystem };
  9. //# sourceMappingURL=index.js.map