@webnativellc/capacitor-filesharer
Version:
Capacitor plugin to download and share files for the Web, Android and iOS
8 lines • 344 B
JavaScript
import { registerPlugin } from "@capacitor/core";
const FileSharer = registerPlugin('FileSharer', {
web: () => import('./web').then(m => new m.FileSharerPluginWeb()),
// electron: () => ("./electron").then(m => new m.FileSharerPluginElectron())
});
export * from './definitions';
export { FileSharer };
//# sourceMappingURL=index.js.map