UNPKG

@webnativellc/capacitor-filesharer

Version:

Capacitor plugin to download and share files for the Web, Android and iOS

8 lines 344 B
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