{"version":3,"sources":["webpack:///./node_modules/@capacitor/share/dist/esm/web.js"],"names":["ShareWeb","navigator","share","value","options","this","unavailable","title","text","url"],"mappings":"kHAAA,gEACO,MAAMA,UAAiB,OAC1B,iBACI,MAAyB,qBAAdC,WAA8BA,UAAUC,MAIxC,CAAEC,OAAO,GAHT,CAAEA,OAAO,GAMxB,YAAYC,GACR,GAAyB,qBAAdH,YAA8BA,UAAUC,MAC/C,MAAMG,KAAKC,YAAY,2CAO3B,aALML,UAAUC,MAAM,CAClBK,MAAOH,EAAQG,MACfC,KAAMJ,EAAQI,KACdC,IAAKL,EAAQK,MAEV","file":"js/chunk-2d0f0050.683e1972.js","sourcesContent":["import { WebPlugin } from '@capacitor/core';\nexport class ShareWeb extends WebPlugin {\n async canShare() {\n if (typeof navigator === 'undefined' || !navigator.share) {\n return { value: false };\n }\n else {\n return { value: true };\n }\n }\n async share(options) {\n if (typeof navigator === 'undefined' || !navigator.share) {\n throw this.unavailable('Share API not available in this browser');\n }\n await navigator.share({\n title: options.title,\n text: options.text,\n url: options.url,\n });\n return {};\n }\n}\n//# sourceMappingURL=web.js.map"],"sourceRoot":""}