Skip to content

Commit 89f1f5f

Browse files
committed
Fix underscore
1 parent 2d32b70 commit 89f1f5f

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

common/api-review/app-check-exp.api.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,8 @@ export interface AppCheck {
1717
// @internal (undocumented)
1818
export type _AppCheckComponentName = 'app-check-exp';
1919

20-
// Warning: (ae-internal-missing-underscore) The name "AppCheckInternalComponentName" should be prefixed with an underscore because the declaration is marked as @internal
21-
//
2220
// @internal (undocumented)
23-
export type AppCheckInternalComponentName = 'app-check-internal';
21+
export type _AppCheckInternalComponentName = 'app-check-internal';
2422

2523
// @public
2624
export interface AppCheckProvider {

packages-exp/app-check-exp/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import { _AppCheckInternalComponentName } from './types';
2323
import { name, version } from '../package.json';
2424

2525
// Used by other Firebase packages.
26-
export { _AppCheckInternalComponentName as AppCheckInternalComponentName };
26+
export { _AppCheckInternalComponentName };
2727

2828
export * from './api';
2929
export * from './public-types';

0 commit comments

Comments
 (0)