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
@@ -50,7 +50,6 @@ export interface SpinnerDialogIOSOptions {
})
@Injectable()
export class SpinnerDialog extends IonicNativePlugin {
/**
* Shows the spinner dialog
* @param title {string} Spinner title (shows on Android only)
@@ -61,7 +60,12 @@ export class SpinnerDialog extends IonicNativePlugin {
@Cordova({
sync: true
})
show(title?: string, message?: string, cancelCallback?: any, iOSOptions?: SpinnerDialogIOSOptions): void { }
show(
title?: string,
message?: string,
cancelCallback?: any,
iOSOptions?: SpinnerDialogIOSOptions
): void {}
/**
* Hides the spinner dialog if visible
@@ -69,6 +73,5 @@ export class SpinnerDialog extends IonicNativePlugin {
@Cordova({
sync: true
})
hide(): void { }
hide(): void {}
}