From bb1f3268dede9633f5736cedfa5f4ccc15f89aa9 Mon Sep 17 00:00:00 2001 From: TAKUYA NAKAYASU Date: Tue, 1 Feb 2022 18:30:38 +0900 Subject: [PATCH] fix(firebase-x): change incrementCounter signature (#4010) --- src/@awesome-cordova-plugins/plugins/firebase-x/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/@awesome-cordova-plugins/plugins/firebase-x/index.ts b/src/@awesome-cordova-plugins/plugins/firebase-x/index.ts index 1e9f8ec7a..a20bf3688 100644 --- a/src/@awesome-cordova-plugins/plugins/firebase-x/index.ts +++ b/src/@awesome-cordova-plugins/plugins/firebase-x/index.ts @@ -849,10 +849,11 @@ export class FirebaseX extends AwesomeCordovaNativePlugin { * using a string other than retry to name that event if you are counting a different type of event. * * @param {string} name + * @param {string} counterName * @returns {Promise} */ @Cordova() - incrementCounter(name: string): Promise { + incrementCounter(name: string, counterName: string): Promise { return; }