From e64cc0c61cd8afa160389398b0a59a149942366b Mon Sep 17 00:00:00 2001 From: jdgeier Date: Mon, 3 Jul 2017 15:27:44 -0600 Subject: [PATCH] feat(app-rate): add function handleNegativeFeedback() (#1748) --- src/@ionic-native/plugins/app-rate/index.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/@ionic-native/plugins/app-rate/index.ts b/src/@ionic-native/plugins/app-rate/index.ts index 6469311683..5ede569eb8 100644 --- a/src/@ionic-native/plugins/app-rate/index.ts +++ b/src/@ionic-native/plugins/app-rate/index.ts @@ -61,6 +61,10 @@ export interface AppRateCallbacks { * call back function. called when rate-dialog showing */ onRateDialogShow?: Function; + /** + * call back function. called when user clicked on negative feedback + */ + handleNegativeFeedback?: Function; }