Revert "chore(package): bump dependencies and lint rules"

This reverts commit 21ad4734fa.
This commit is contained in:
Daniel
2018-03-16 22:04:01 +01:00
parent 21ad4734fa
commit 6c938bfdb7
178 changed files with 4221 additions and 10592 deletions
+9 -19
View File
@@ -1,5 +1,6 @@
import { Injectable } from '@angular/core';
import { Cordova, IonicNativePlugin, Plugin } from '@ionic-native/core';
import { Cordova, Plugin, IonicNativePlugin } from '@ionic-native/core';
/**
* @name Touch ID
@@ -51,15 +52,14 @@ import { Cordova, IonicNativePlugin, Plugin } from '@ionic-native/core';
})
@Injectable()
export class TouchID extends IonicNativePlugin {
/**
* Checks Whether TouchID is available or not.
*
* @returns {Promise<any>} Returns a Promise that resolves if yes, rejects if no.
*/
@Cordova()
isAvailable(): Promise<any> {
return;
}
isAvailable(): Promise<any> { return; }
/**
* Show TouchID dialog and wait for a fingerprint scan. If user taps 'Enter Password' button, brings up standard system passcode screen.
@@ -68,9 +68,7 @@ export class TouchID extends IonicNativePlugin {
* @returns {Promise<any>} Returns a Promise the resolves if the fingerprint scan was successful, rejects with an error code (see above).
*/
@Cordova()
verifyFingerprint(message: string): Promise<any> {
return;
}
verifyFingerprint(message: string): Promise<any> { return; }
/**
* Show TouchID dialog and wait for a fingerprint scan. If user taps 'Enter Password' button, rejects with code '-3' (see above).
@@ -79,9 +77,7 @@ export class TouchID extends IonicNativePlugin {
* @returns {Promise<any>} Returns a Promise the resolves if the fingerprint scan was successful, rejects with an error code (see above).
*/
@Cordova()
verifyFingerprintWithCustomPasswordFallback(message: string): Promise<any> {
return;
}
verifyFingerprintWithCustomPasswordFallback(message: string): Promise<any> { return; }
/**
* Show TouchID dialog with custom 'Enter Password' message and wait for a fingerprint scan. If user taps 'Enter Password' button, rejects with code '-3' (see above).
@@ -91,12 +87,7 @@ export class TouchID extends IonicNativePlugin {
* @returns {Promise<any>} Returns a Promise the resolves if the fingerprint scan was successful, rejects with an error code (see above).
*/
@Cordova()
verifyFingerprintWithCustomPasswordFallbackAndEnterPasswordLabel(
message: string,
enterPasswordLabel: string
): Promise<any> {
return;
}
verifyFingerprintWithCustomPasswordFallbackAndEnterPasswordLabel(message: string, enterPasswordLabel: string): Promise<any> { return; }
/**
* Checks if the fingerprint database changed.
@@ -104,7 +95,6 @@ export class TouchID extends IonicNativePlugin {
* @returns {Promise<any>} Returns a Promise that resolves if yes, rejects if no.
*/
@Cordova()
didFingerprintDatabaseChange(): Promise<any> {
return;
}
didFingerprintDatabaseChange(): Promise<any> { return; }
}