From 0bc27186748a5318020c44221ab1753157f81173 Mon Sep 17 00:00:00 2001 From: Max Lynch Date: Mon, 13 Sep 2021 16:18:51 -0500 Subject: [PATCH] Removed quikkly - unused --- src/@ionic-native/plugins/quikkly/index.ts | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 src/@ionic-native/plugins/quikkly/index.ts diff --git a/src/@ionic-native/plugins/quikkly/index.ts b/src/@ionic-native/plugins/quikkly/index.ts deleted file mode 100644 index f7a0c5ee..00000000 --- a/src/@ionic-native/plugins/quikkly/index.ts +++ /dev/null @@ -1,22 +0,0 @@ -import { Injectable } from '@angular/core'; -import { Cordova, IonicNativePlugin, Plugin } from '@ionic-native/core'; - -/** - * @name QuikklyPlugin - * @description ionic wrapper for cordova-plugin-quikkly - * Use the quikkly scanner in your ionic app - */ -@Plugin({ - pluginName: 'QuikklyPlugin', - plugin: 'cordova-plugin-quikkly', - pluginRef: 'cordova.plugins.quikkly', - repo: 'https://github.com/quikkly/cordova-plugin-quikkly.git', - platforms: ['Android', 'iOS'], -}) -@Injectable() -export class QuikklyPlugin extends IonicNativePlugin { - @Cordova() - openScanner(): Promise { - return; - } -}