Skip to content

Commit

Permalink
fix(analytics): typo in type declarations (#8011)
Browse files Browse the repository at this point in the history
  • Loading branch information
matinzd authored Oct 21, 2024
1 parent 9c94085 commit 5fde231
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/analytics/lib/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1775,7 +1775,7 @@ export namespace FirebaseAnalyticsTypes {
*/
initiateOnDeviceConversionMeasurementWithHashedEmailAddress(
hashedEmailAddress: string,
): Poromise<void>;
): Promise<void>;

/**
* Start privacy-sensitive on-device conversion management.
Expand Down
2 changes: 1 addition & 1 deletion packages/analytics/lib/modular/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1179,7 +1179,7 @@ export function initiateOnDeviceConversionMeasurementWithEmailAddress(
export function initiateOnDeviceConversionMeasurementWithHashedEmailAddress(
analytics: Analytics,
hashedEmailAddress: string,
): Poromise<void>;
): Promise<void>;

/**
* Start privacy-sensitive on-device conversion management.
Expand Down

0 comments on commit 5fde231

Please sign in to comment.