Skip to content

Fixing some links and link text. #3647

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 17, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 17 additions & 14 deletions packages/firebase/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6952,9 +6952,9 @@ declare namespace firebase.messaging {
* Do not call this constructor directly. Instead, use
* {@link firebase.messaging `firebase.messaging()`}.
*
* See {@link https://firebase.google.com/docs/cloud-messaging/js/client Set Up a JavaScript
* Firebase Cloud Messaging Client App} for a full guide on how to use the Firebase Messaging
* service.
* See {@link https://firebase.google.com/docs/cloud-messaging/js/client
* Set Up a JavaScript Firebase Cloud Messaging Client App} for a full guide on how to use the
* Firebase Messaging service.
*
*/
interface Messaging {
Expand Down Expand Up @@ -7109,13 +7109,13 @@ declare namespace firebase.messaging {

/**
* Message payload that contains the notification payload that is represented with
* {@link firebase.Messaging.NotificationPayload} and the data payload that contains an arbitrary
* {@link firebase.messaging.NotificationPayload} and the data payload that contains an arbitrary
* number of key-value pairs sent by developers through the
* {@link https://firebase.google.com/docs/reference/fcm/rest/v1/projects.messages#notification Send API}
*/
export interface MessagePayload {
/**
* See {@link firebase.Messaging.NotificationPayload}.
* See {@link firebase.messaging.NotificationPayload}.
*/
notification?: NotificationPayload;

Expand All @@ -7125,7 +7125,7 @@ declare namespace firebase.messaging {
data?: { [key: string]: string };

/**
* See {@link firebase.Messaging.FcmOptions}.
* See {@link firebase.messaging.FcmOptions}.
*/
fcmOptions?: FcmOptions;

Expand All @@ -7135,15 +7135,17 @@ declare namespace firebase.messaging {
from: string;

/**
* The collapse key of this message. See more
* {@link https://firebase.google.com/docs/cloud-messaging/concept-options#collapsible_and_non-collapsible_messages}.
* The collapse key of this message. See
* {@link https://firebase.google.com/docs/cloud-messaging/concept-options#collapsible_and_non-collapsible_messages
* Collapsible and non-collapsible messages}.
*/
collapseKey: string;
}

/**
* Options for features provided by the FCM SDK for Web. See more
* {@link https://firebase.google.com/docs/reference/fcm/rest/v1/projects.messages#webpushfcmoptions}.
* Options for features provided by the FCM SDK for Web. See
* {@link https://firebase.google.com/docs/reference/fcm/rest/v1/projects.messages#webpushfcmoptions
* WebpushFcmOptions}.
*/
export interface FcmOptions {
/**
Expand All @@ -7154,8 +7156,9 @@ declare namespace firebase.messaging {
link?: string;

/**
* Label associated with the message's analytics data. See more
* {@link https://firebase.google.com/docs/cloud-messaging/understand-delivery#adding-analytics-labels-to-messages}.
* Label associated with the message's analytics data. See
* {@link https://firebase.google.com/docs/cloud-messaging/understand-delivery#adding-analytics-labels-to-messages
* Adding analytics labels}.
*/
analyticsLabel?: string;
}
Expand All @@ -7176,8 +7179,8 @@ declare namespace firebase.messaging {

/**
* The URL of the image that is shown with the notification. See
* {@link https://firebase.google.com/docs/reference/fcm/rest/v1/projects.messages#notification}
* for supported image format.
* {@link https://firebase.google.com/docs/reference/fcm/rest/v1/projects.messages#notification
* `notification.image`} for supported image format.
*/
image?: string;
}
Expand Down