mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 13:02:56 +00:00
1 line
7.0 KiB
JSON
1 line
7.0 KiB
JSON
|
|
{"ast":null,"code":"import { __extends } from \"tslib\";\nimport { Injectable } from '@angular/core';\nimport { IonicNativePlugin, cordova } from '@ionic-native/core';\nimport * as ɵngcc0 from '@angular/core';\nvar StreamingMedia = /** @class */function (_super) {\n __extends(StreamingMedia, _super);\n function StreamingMedia() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n StreamingMedia.prototype.playVideo = function (videoUrl, options) {\n return cordova(this, \"playVideo\", {\n \"sync\": true\n }, arguments);\n };\n StreamingMedia.prototype.playAudio = function (audioUrl, options) {\n return cordova(this, \"playAudio\", {\n \"sync\": true\n }, arguments);\n };\n StreamingMedia.prototype.stopAudio = function () {\n return cordova(this, \"stopAudio\", {\n \"sync\": true\n }, arguments);\n };\n StreamingMedia.prototype.pauseAudio = function () {\n return cordova(this, \"pauseAudio\", {\n \"sync\": true,\n \"platforms\": [\"iOS\"]\n }, arguments);\n };\n StreamingMedia.prototype.resumeAudio = function () {\n return cordova(this, \"resumeAudio\", {\n \"sync\": true,\n \"platforms\": [\"iOS\"]\n }, arguments);\n };\n StreamingMedia.pluginName = \"StreamingMedia\";\n StreamingMedia.plugin = \"cordova-plugin-streaming-media\";\n StreamingMedia.pluginRef = \"plugins.streamingMedia\";\n StreamingMedia.repo = \"https://github.com/nchutchind/cordova-plugin-streaming-media\";\n StreamingMedia.platforms = [\"Amazon Fire OS\", \"Android\", \"iOS\"];\n StreamingMedia.ɵfac = /*@__PURE__*/function () {\n var ɵStreamingMedia_BaseFactory;\n return function StreamingMedia_Factory(t) {\n return (ɵStreamingMedia_BaseFactory || (ɵStreamingMedia_BaseFactory = ɵngcc0.ɵɵgetInheritedFactory(StreamingMedia)))(t || StreamingMedia);\n };\n }();\n StreamingMedia.ɵprov = /*@__PURE__*/ɵngcc0.ɵɵdefineInjectable({\n token: StreamingMedia,\n factory: function (t) {\n return StreamingMedia.ɵfac(t);\n }\n });\n (function () {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && ɵngcc0.ɵsetClassMetadata(StreamingMedia, [{\n type: Injectable\n }], null, null);\n })();\n return StreamingMedia;\n}(IonicNativePlugin);\nexport { StreamingMedia };","map":{"version":3,"names":["__extends","Injectable","IonicNativePlugin","cordova","ɵngcc0","StreamingMedia","_super","apply","arguments","prototype","playVideo","videoUrl","options","playAudio","audioUrl","stopAudio","pauseAudio","resumeAudio","pluginName","plugin","pluginRef","repo","platforms","ɵfac","ɵStreamingMedia_BaseFactory","StreamingMedia_Factory","t","ɵɵgetInheritedFactory","ɵprov","ɵɵdefineInjectable","token","factory","ngDevMode","ɵsetClassMetadata","type"],"sources":["C:/Users/eudes.inacio/GabineteDigital/gabinete-digital-fo/node_modules/@ionic-native/streaming-media/__ivy_ngcc__/ngx/index.js"],"sourcesContent":["import { __extends } from \"tslib\";\nimport { Injectable } from '@angular/core';\nimport { IonicNativePlugin, cordova } from '@ionic-native/core';\nimport * as ɵngcc0 from '@angular/core';\nvar StreamingMedia = /** @class */ (function (_super) {\n __extends(StreamingMedia, _super);\n function StreamingMedia() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n StreamingMedia.prototype.playVideo = function (videoUrl, options) { return cordova(this, \"playVideo\", { \"sync\": true }, arguments); };\n StreamingMedia.prototype.playAudio = function (audioUrl, options) { return cordova(this, \"playAudio\", { \"sync\": true }, arguments); };\n StreamingMedia.prototype.stopAudio = function () { return cordova(this, \"stopAudio\", { \"sync\": true }, arguments); };\n StreamingMedia.prototype.pauseAudio = function () { return cordova(this, \"pauseAudio\", { \"sync\": true, \"platforms\": [\"iOS\"] }, arguments); };\n StreamingMedia.prototype.resumeAudio = function () { return cordova(this, \"resumeAudio\", { \"sync\": true, \"platforms\": [\"iOS\"] }, arguments); };\
|