{"version":3,"sources":["../../../src/@ionic-native/plugins/splash-screen/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;AAAA,OAAO,EAAE,UAAA,EAAW,MAAO,eAAA,CAAgB;AAC3C,OAAO,EAAE,OAAA,EAAS,MAAA,EAAQ,iBAAA,EAAkB,MAAO,oBAAA,CAAqB;AAGxE;;;;;;;;;;;;;;;GAeG;AASH;IAAkC,gCAAiB;IAAnD;;IAwBA,CAAC;IAtBC;;OAEG;IAIH,2BAAI,GAAJ,cAAe,CAAC;IAEhB;;OAEG;IAIH,2BAAI,GAAJ,cAAe,CAAC;IAEX,uBAAU,GAA0B;QAC3C,EAAE,IAAI,EAAE,UAAU,EAAE;KACnB,CAAC;IACF,kBAAkB;IACX,2BAAc,GAAmE,cAAM,OAAA,EAC7F,EAD6F,CAC7F,CAAC;IAfA;QAHC,OAAO,CAAC;YACP,IAAI,EAAE,IAAI;SACX,CAAC;;;;4CACc;IAQhB;QAHC,OAAO,CAAC;YACP,IAAI,EAAE,IAAI;SACX,CAAC;;;;4CACc;IAhBL,YAAY;QARxB,MAAM,CAAC;YACN,UAAU,EAAE,cAAc;YAC1B,MAAM,EAAE,6BAA6B;YACrC,SAAS,EAAE,wBAAwB;YACnC,IAAI,EAAE,uDAAuD;YAC7D,SAAS,EAAE,CAAC,gBAAgB,EAAE,SAAS,EAAE,KAAK,EAAE,SAAS,CAAC;SAC3D,CAAC;OAEW,YAAY,CAwBxB;IAAD,mBAAC;CAxBD,AAwBC,CAxBiC,iBAAiB,GAwBlD;SAxBY,YAAY","file":"index.js","sourceRoot":"","sourcesContent":["import { Injectable } from '@angular/core';\nimport { Cordova, Plugin, IonicNativePlugin } from '@ionic-native/core';\n\n\n/**\n * @name Splash Screen\n * @description This plugin displays and hides a splash screen during application launch. The methods below allows showing and hiding the splashscreen after the app has loaded.\n * @usage\n * ```typescript\n * import { SplashScreen } from '@ionic-native/splash-screen';\n *\n * constructor(private splashScreen: SplashScreen) { }\n *\n * ...\n *\n * this.splashScreen.show();\n *\n * this.splashScreen.hide();\n * ```\n */\n@Plugin({\n pluginName: 'SplashScreen',\n plugin: 'cordova-plugin-splashscreen',\n pluginRef: 'navigator.splashscreen',\n repo: 'https://github.com/apache/cordova-plugin-splashscreen',\n platforms: ['Amazon Fire OS', 'Android', 'iOS', 'Windows']\n})\n\nexport class SplashScreen extends IonicNativePlugin {\n\n /**\n * Shows the splashscreen\n */\n @Cordova({\n sync: true\n })\n show(): void { }\n\n /**\n * Hides the splashscreen\n */\n @Cordova({\n sync: true\n })\n hide(): void { }\n\nstatic decorators: DecoratorInvocation[] = [\n{ type: Injectable },\n];\n/** @nocollapse */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n"]}