chore(package): bump dependencies and lint rules

This commit is contained in:
Daniel
2018-03-16 22:04:01 +01:00
parent 7547a94c80
commit 21ad4734fa
178 changed files with 10565 additions and 4194 deletions
+20 -9
View File
@@ -1,6 +1,5 @@
import { Injectable } from '@angular/core';
import { Cordova, Plugin, IonicNativePlugin } from '@ionic-native/core';
import { Cordova, IonicNativePlugin, Plugin } from '@ionic-native/core';
/**
* @name Keychain
@@ -36,7 +35,6 @@ import { Cordova, Plugin, IonicNativePlugin } from '@ionic-native/core';
})
@Injectable()
export class Keychain extends IonicNativePlugin {
/**
* Retrieves a value for a key
*
@@ -46,7 +44,9 @@ export class Keychain extends IonicNativePlugin {
@Cordova({
callbackOrder: 'reverse'
})
get(key: string, touchIDMessage?: string): Promise<any> { return; }
get(key: string, touchIDMessage?: string): Promise<any> {
return;
}
/**
* Sets a value for a key
@@ -58,7 +58,13 @@ export class Keychain extends IonicNativePlugin {
@Cordova({
callbackOrder: 'reverse'
})
set(key: string, value: string | number | boolean, useTouchID?: boolean): Promise<any> { return; }
set(
key: string,
value: string | number | boolean,
useTouchID?: boolean
): Promise<any> {
return;
}
/**
* Gets a JSON value for a key
@@ -69,7 +75,9 @@ export class Keychain extends IonicNativePlugin {
@Cordova({
callbackOrder: 'reverse'
})
getJson(key: string, touchIDMessage?: string): Promise<any> { return; }
getJson(key: string, touchIDMessage?: string): Promise<any> {
return;
}
/**
* Sets a JSON value for a key
@@ -81,7 +89,9 @@ export class Keychain extends IonicNativePlugin {
@Cordova({
callbackOrder: 'reverse'
})
setJson(key: string, obj: any, useTouchId?: boolean): Promise<any> { return; }
setJson(key: string, obj: any, useTouchId?: boolean): Promise<any> {
return;
}
/**
* Removes a value for a key
@@ -91,6 +101,7 @@ export class Keychain extends IonicNativePlugin {
@Cordova({
callbackOrder: 'reverse'
})
remove(key: string): Promise<any> { return; }
remove(key: string): Promise<any> {
return;
}
}