[types] Export messaging and notifications types
This commit is contained in:
parent
cd0ef4e3b7
commit
e6a7004c5d
16
lib/index.js
16
lib/index.js
|
@ -26,7 +26,6 @@ export type {
|
|||
default as ConfirmationResult,
|
||||
} from './modules/auth/ConfirmationResult';
|
||||
export type { default as User } from './modules/auth/User';
|
||||
export type { default as Message } from './modules/messaging/Message';
|
||||
|
||||
/*
|
||||
* Export Database types
|
||||
|
@ -65,3 +64,18 @@ export type {
|
|||
default as QuerySnapshot,
|
||||
} from './modules/firestore/QuerySnapshot';
|
||||
export type { default as WriteBatch } from './modules/firestore/WriteBatch';
|
||||
|
||||
/*
|
||||
* Export Messaging types
|
||||
*/
|
||||
export type { default as Message } from './modules/messaging/Message';
|
||||
export type {
|
||||
default as RemoteMessage,
|
||||
} from './modules/messaging/RemoteMessage';
|
||||
|
||||
/*
|
||||
* Export Notifications types
|
||||
*/
|
||||
export type {
|
||||
default as Notification,
|
||||
} from './modules/notifications/Notification';
|
||||
|
|
Loading…
Reference in New Issue