Skip to content

Commit

Permalink
fix(firebase-x): change incrementCounter signature (#4010)
Browse files Browse the repository at this point in the history
  • Loading branch information
takuya-nakayasu authored Feb 1, 2022
1 parent 24c61a5 commit bb1f326
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/@awesome-cordova-plugins/plugins/firebase-x/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<any>}
*/
@Cordova()
incrementCounter(name: string): Promise<any> {
incrementCounter(name: string, counterName: string): Promise<any> {
return;
}

Expand Down

0 comments on commit bb1f326

Please sign in to comment.