File tree 3 files changed +1
-10
lines changed
packages-exp/messaging-exp/src 3 files changed +1
-10
lines changed Original file line number Diff line number Diff line change @@ -59,11 +59,6 @@ export interface NotificationPayload {
59
59
60
60
export { Observer }
61
61
62
- // Warning: (ae-internal-missing-underscore) The name "onBackgroundMessage" should be prefixed with an underscore because the declaration is marked as @internal
63
- //
64
- // @internal
65
- export function onBackgroundMessage(messaging : FirebaseMessaging , nextOrObserver : NextFn <MessagePayload > | Observer <MessagePayload >): Unsubscribe ;
66
-
67
62
// @public
68
63
export function onMessage(messaging : FirebaseMessaging , nextOrObserver : NextFn <MessagePayload > | Observer <MessagePayload >): Unsubscribe ;
69
64
Original file line number Diff line number Diff line change @@ -141,9 +141,6 @@ export function onMessage(
141
141
* message is received and the app is currently in the background.
142
142
*
143
143
* @returns To stop listening for messages execute this returned function
144
- *
145
- * make it internal to hide it from the browser entry point.
146
- * @internal
147
144
*/
148
145
export function onBackgroundMessage (
149
146
messaging : FirebaseMessaging ,
Original file line number Diff line number Diff line change @@ -30,8 +30,7 @@ export {
30
30
getToken ,
31
31
deleteToken ,
32
32
onMessage ,
33
- getMessagingInWindow as getMessaging ,
34
- onBackgroundMessage
33
+ getMessagingInWindow as getMessaging
35
34
} from './api' ;
36
35
export { isWindowSupported as isSupported } from './api/isSupported' ;
37
36
export * from './interfaces/public-types' ;
You can’t perform that action at this time.
0 commit comments