Skip to content

Commit 5d7f555

Browse files
committed
Remove api-review commits
1 parent 8295c4a commit 5d7f555

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

common/api-review/analytics-exp.api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export type CustomEventName<T> = T extends EventNameString ? never : T;
3737
// @public
3838
export interface CustomParams {
3939
// (undocumented)
40-
[key: string]: any;
40+
[key: string]: unknown;
4141
}
4242

4343
// @public

common/api-review/performance-exp.api.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,10 @@ export interface FirebasePerformance {
1313
}
1414

1515
// @public
16-
export function getPerformance(app: FirebaseApp, settings?: PerformanceSettings): FirebasePerformance;
16+
export function getPerformance(app: FirebaseApp): FirebasePerformance;
17+
18+
// @public
19+
export function initializePerformance(app: FirebaseApp, settings?: PerformanceSettings): FirebasePerformance;
1720

1821
// @public (undocumented)
1922
export interface PerformanceSettings {

0 commit comments

Comments
 (0)