Skip to content

Commit c0f2a28

Browse files
committed
Fix import.
1 parent 6304140 commit c0f2a28

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
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

packages-exp/analytics-compat/src/index.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@
1515
* limitations under the License.
1616
*/
1717

18-
import { firebase } from '@firebase/app-compat';
19-
import { _FirebaseNamespace } from '@firebase/app-types/private';
18+
import { firebase, _FirebaseNamespace } from '@firebase/app-compat';
2019
import { name, version } from '../package.json';
2120
import { AnalyticsService } from './service';
2221
import {

0 commit comments

Comments
 (0)