Skip to content

Commit c1d98b0

Browse files
authored
Fixing some links and link text. (#3647)
1 parent d02177b commit c1d98b0

File tree

1 file changed

+17
-14
lines changed

1 file changed

+17
-14
lines changed

packages/firebase/index.d.ts

Lines changed: 17 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -6952,9 +6952,9 @@ declare namespace firebase.messaging {
69526952
* Do not call this constructor directly. Instead, use
69536953
* {@link firebase.messaging `firebase.messaging()`}.
69546954
*
6955-
* See {@link https://firebase.google.com/docs/cloud-messaging/js/client Set Up a JavaScript
6956-
* Firebase Cloud Messaging Client App} for a full guide on how to use the Firebase Messaging
6957-
* service.
6955+
* See {@link https://firebase.google.com/docs/cloud-messaging/js/client
6956+
* Set Up a JavaScript Firebase Cloud Messaging Client App} for a full guide on how to use the
6957+
* Firebase Messaging service.
69586958
*
69596959
*/
69606960
interface Messaging {
@@ -7109,13 +7109,13 @@ declare namespace firebase.messaging {
71097109

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

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

71277127
/**
7128-
* See {@link firebase.Messaging.FcmOptions}.
7128+
* See {@link firebase.messaging.FcmOptions}.
71297129
*/
71307130
fcmOptions?: FcmOptions;
71317131

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

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

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

71567158
/**
7157-
* Label associated with the message's analytics data. See more
7158-
* {@link https://firebase.google.com/docs/cloud-messaging/understand-delivery#adding-analytics-labels-to-messages}.
7159+
* Label associated with the message's analytics data. See
7160+
* {@link https://firebase.google.com/docs/cloud-messaging/understand-delivery#adding-analytics-labels-to-messages
7161+
* Adding analytics labels}.
71597162
*/
71607163
analyticsLabel?: string;
71617164
}
@@ -7176,8 +7179,8 @@ declare namespace firebase.messaging {
71767179

71777180
/**
71787181
* The URL of the image that is shown with the notification. See
7179-
* {@link https://firebase.google.com/docs/reference/fcm/rest/v1/projects.messages#notification}
7180-
* for supported image format.
7182+
* {@link https://firebase.google.com/docs/reference/fcm/rest/v1/projects.messages#notification
7183+
* `notification.image`} for supported image format.
71817184
*/
71827185
image?: string;
71837186
}

0 commit comments

Comments
 (0)