123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181 |
- import { App } from '../app';
- import { Messaging as TMessaging } from './messaging';
- import { AndroidConfig as TAndroidConfig, AndroidFcmOptions as TAndroidFcmOptions, AndroidNotification as TAndroidNotification, ApnsConfig as TApnsConfig, ApnsFcmOptions as TApnsFcmOptions, ApnsPayload as TApnsPayload, Aps as TAps, ApsAlert as TApsAlert, BatchResponse as TBatchResponse, CriticalSound as TCriticalSound, ConditionMessage as TConditionMessage, FcmOptions as TFcmOptions, LightSettings as TLightSettings, Message as TMessage, MessagingTopicManagementResponse as TMessagingTopicManagementResponse, MulticastMessage as TMulticastMessage, Notification as TNotification, SendResponse as TSendResponse, TokenMessage as TTokenMessage, TopicMessage as TTopicMessage, WebpushConfig as TWebpushConfig, WebpushFcmOptions as TWebpushFcmOptions, WebpushNotification as TWebpushNotification, DataMessagePayload as TDataMessagePayload, MessagingConditionResponse as TMessagingConditionResponse, MessagingDeviceGroupResponse as TMessagingDeviceGroupResponse, MessagingDeviceResult as TMessagingDeviceResult, MessagingDevicesResponse as TMessagingDevicesResponse, MessagingOptions as TMessagingOptions, MessagingPayload as TMessagingPayload, MessagingTopicResponse as TMessagingTopicResponse, NotificationMessagePayload as TNotificationMessagePayload } from './messaging-api';
- export declare function messaging(app?: App): messaging.Messaging;
- export declare namespace messaging {
-
- type Messaging = TMessaging;
-
- type AndroidConfig = TAndroidConfig;
-
- type AndroidFcmOptions = TAndroidFcmOptions;
-
- type AndroidNotification = TAndroidNotification;
-
- type ApnsConfig = TApnsConfig;
-
- type ApnsFcmOptions = TApnsFcmOptions;
-
- type ApnsPayload = TApnsPayload;
-
- type Aps = TAps;
-
- type ApsAlert = TApsAlert;
-
- type BatchResponse = TBatchResponse;
-
- type CriticalSound = TCriticalSound;
-
- type ConditionMessage = TConditionMessage;
-
- type FcmOptions = TFcmOptions;
-
- type LightSettings = TLightSettings;
-
- type Message = TMessage;
-
- type MessagingTopicManagementResponse = TMessagingTopicManagementResponse;
-
- type MulticastMessage = TMulticastMessage;
-
- type Notification = TNotification;
-
- type SendResponse = TSendResponse;
-
- type TokenMessage = TTokenMessage;
-
- type TopicMessage = TTopicMessage;
-
- type WebpushConfig = TWebpushConfig;
-
- type WebpushFcmOptions = TWebpushFcmOptions;
-
- type WebpushNotification = TWebpushNotification;
-
- type DataMessagePayload = TDataMessagePayload;
-
- type MessagingConditionResponse = TMessagingConditionResponse;
-
- type MessagingDeviceGroupResponse = TMessagingDeviceGroupResponse;
-
- type MessagingDeviceResult = TMessagingDeviceResult;
-
- type MessagingDevicesResponse = TMessagingDevicesResponse;
-
- type MessagingOptions = TMessagingOptions;
-
- type MessagingPayload = TMessagingPayload;
-
- type MessagingTopicResponse = TMessagingTopicResponse;
-
- type NotificationMessagePayload = TNotificationMessagePayload;
- }
|