@okode/capacitor-plugin-secure-share
Version:
Capacitor Secure Share Plugin
35 lines (27 loc) • 971 B
JavaScript
var capacitorSecureShare = (function (exports, core) {
'use strict';
const SecureShare = core.registerPlugin('SecureShare', {
web: () => Promise.resolve().then(function () { return web; }).then(m => new m.SecureShareWeb()),
});
class SecureShareWeb extends core.WebPlugin {
save(data) {
console.log(data);
throw this.unimplemented('Not implemented on web.');
}
retrieve() {
throw this.unimplemented('Not implemented on web.');
}
retrieveFrom(data) {
console.log(data);
throw this.unimplemented('Not implemented on web.');
}
}
var web = /*#__PURE__*/Object.freeze({
__proto__: null,
SecureShareWeb: SecureShareWeb
});
exports.SecureShare = SecureShare;
Object.defineProperty(exports, '__esModule', { value: true });
return exports;
})({}, capacitorExports);
//# sourceMappingURL=plugin.js.map