mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 04:57:52 +00:00
1 line
7.2 KiB
JSON
1 line
7.2 KiB
JSON
|
|
{"ast":null,"code":"import { __extends } from \"tslib\";\nimport { Injectable } from '@angular/core';\nimport { AwesomeCordovaNativePlugin, cordova } from '@awesome-cordova-plugins/core';\nimport * as ɵngcc0 from '@angular/core';\nvar FileOpener = /** @class */function (_super) {\n __extends(FileOpener, _super);\n function FileOpener() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n FileOpener.prototype.open = function (filePath, fileMIMEType) {\n return cordova(this, \"open\", {\n \"callbackStyle\": \"object\",\n \"successName\": \"success\",\n \"errorName\": \"error\"\n }, arguments);\n };\n FileOpener.prototype.uninstall = function (packageId) {\n return cordova(this, \"uninstall\", {\n \"callbackStyle\": \"object\",\n \"successName\": \"success\",\n \"errorName\": \"error\"\n }, arguments);\n };\n FileOpener.prototype.appIsInstalled = function (packageId) {\n return cordova(this, \"appIsInstalled\", {\n \"callbackStyle\": \"object\",\n \"successName\": \"success\",\n \"errorName\": \"error\"\n }, arguments);\n };\n FileOpener.prototype.showOpenWithDialog = function (filePath, fileMIMEType) {\n return cordova(this, \"showOpenWithDialog\", {\n \"callbackStyle\": \"object\",\n \"successName\": \"success\",\n \"errorName\": \"error\"\n }, arguments);\n };\n FileOpener.pluginName = \"FileOpener\";\n FileOpener.plugin = \"cordova-plugin-file-opener2\";\n FileOpener.pluginRef = \"cordova.plugins.fileOpener2\";\n FileOpener.repo = \"https://github.com/pwlin/cordova-plugin-file-opener2\";\n FileOpener.platforms = [\"Android\", \"iOS\", \"Windows\", \"Windows Phone 8\"];\n FileOpener.ɵfac = /*@__PURE__*/function () {\n var ɵFileOpener_BaseFactory;\n return function FileOpener_Factory(t) {\n return (ɵFileOpener_BaseFactory || (ɵFileOpener_BaseFactory = ɵngcc0.ɵɵgetInheritedFactory(FileOpener)))(t || FileOpener);\n };\n }();\n FileOpener.ɵprov = /*@__PURE__*/ɵngcc0.ɵɵdefineInjectable({\n token: FileOpener,\n factory: function (t) {\n return FileOpener.ɵfac(t);\n }\n });\n (function () {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && ɵngcc0.ɵsetClassMetadata(FileOpener, [{\n type: Injectable\n }], null, null);\n })();\n return FileOpener;\n}(AwesomeCordovaNativePlugin);\nexport { FileOpener };","map":{"version":3,"names":["__extends","Injectable","AwesomeCordovaNativePlugin","cordova","ɵngcc0","FileOpener","_super","apply","arguments","prototype","open","filePath","fileMIMEType","uninstall","packageId","appIsInstalled","showOpenWithDialog","pluginName","plugin","pluginRef","repo","platforms","ɵfac","ɵFileOpener_BaseFactory","FileOpener_Factory","t","ɵɵgetInheritedFactory","ɵprov","ɵɵdefineInjectable","token","factory","ngDevMode","ɵsetClassMetadata","type"],"sources":["C:/Users/eudes.inacio/GabineteDigital/gabinete-digital-fo/node_modules/@awesome-cordova-plugins/file-opener/__ivy_ngcc__/ngx/index.js"],"sourcesContent":["import { __extends } from \"tslib\";\nimport { Injectable } from '@angular/core';\nimport { AwesomeCordovaNativePlugin, cordova } from '@awesome-cordova-plugins/core';\nimport * as ɵngcc0 from '@angular/core';\nvar FileOpener = /** @class */ (function (_super) {\n __extends(FileOpener, _super);\n function FileOpener() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n FileOpener.prototype.open = function (filePath, fileMIMEType) { return cordova(this, \"open\", { \"callbackStyle\": \"object\", \"successName\": \"success\", \"errorName\": \"error\" }, arguments); };\n FileOpener.prototype.uninstall = function (packageId) { return cordova(this, \"uninstall\", { \"callbackStyle\": \"object\", \"successName\": \"success\", \"errorName\": \"error\" }, arguments); };\n FileOpener.prototype.appIsInstalled = function (packageId) { return cordova(this, \"appIsInstalled\", { \"callbackStyle\": \"object\", \"successName\": \"success\", \"errorName\": \"error\" }, argume
|