Merge branch 'master' into v5

This commit is contained in:
Daniel
2018-09-17 18:23:18 +02:00
parent 46b1a7385c
commit 039c6d40af
76 changed files with 846 additions and 494 deletions
@@ -1,7 +1,6 @@
import { Injectable } from '@angular/core';
import { Cordova, IonicNativePlugin, Plugin } from '@ionic-native/core';
/**
* @name Pin Dialog
* @description
@@ -49,8 +48,11 @@ export class PinDialog extends IonicNativePlugin {
successIndex: 1,
errorIndex: 4 // no error callback
})
prompt(message: string, title: string, buttons: string[]): Promise<{ buttonIndex: number, input1: string }> {
prompt(
message: string,
title: string,
buttons: string[]
): Promise<{ buttonIndex: number; input1: string }> {
return;
}
}