File tree Expand file tree Collapse file tree 4 files changed +7
-6
lines changed Expand file tree Collapse file tree 4 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -114,7 +114,7 @@ export interface EventContext {
114114
115115 /**
116116 * An object containing the values of the wildcards in the `path` parameter
117- * provided to the [`ref()`](functions.database#. ref) method for a Realtime
117+ * provided to the [`ref()`](providers_database_.html# ref) method for a Realtime
118118 * Database trigger. Cannot be accessed while inside the handler namespace.
119119 */
120120 params : { [ option : string ] : any } ;
Original file line number Diff line number Diff line change @@ -184,7 +184,7 @@ export class UserDimensions {
184184 * A map of user properties set with the
185185 * [`setUserProperty`](https://firebase.google.com/docs/analytics/android/properties) API.
186186 *
187- * All values are [`UserPropertyValue`](functions.analytics.UserPropertyValue ) objects.
187+ * All values are [`UserPropertyValue`](providers_analytics_.userpropertyvalue ) objects.
188188 */
189189 userProperties : { [ key : string ] : UserPropertyValue } ;
190190
@@ -319,7 +319,8 @@ export interface DeviceInfo {
319319
320320 /**
321321 * The time zone of the device when data was uploaded, as seconds skew from UTC.
322- * Use this to calculate the device's local time for [`event.timestamp`](functions.Event#timestamp).
322+ * Use this to calculate the device's local time for
323+ * [`EventContext.timestamp`](cloud_functions_eventcontext.html#timestamp).
323324 */
324325 deviceTimeZoneOffsetSeconds : number ;
325326
Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ export function instance(instance: string) {
7575 * 1. Cloud Functions allows wildcards in the `path` name. Any `path` component
7676 * in curly brackets (`{}`) is a wildcard that matches all strings. The value
7777 * that matched a certain invocation of a Cloud Function is returned as part
78- * of the [`event .params`](functions.EventContext #params) object. For
78+ * of the [`EventContext .params`](cloud_functions_eventcontext.html #params object. For
7979 * example, `ref("messages/{messageId}")` matches changes at
8080 * `/messages/message1` or `/messages/message2`, resulting in
8181 * `event.params.messageId` being set to `"message1"` or `"message2"`,
@@ -104,7 +104,7 @@ export function _instanceWithOptions(
104104/**
105105 * The Firebase Realtime Database instance builder interface.
106106 *
107- * Access via [`functions. database.instance()`](functions.database#. instance).
107+ * Access via [`database.instance()`](providers_database_.html# instance).
108108 */
109109export class InstanceBuilder {
110110 /** @hidden */
Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ export function _scheduleWithOptions(
112112/**
113113 * The Google Cloud Pub/Sub topic builder.
114114 *
115- * Access via [`functions.pubsub.topic()`](functions.pubsub#. topic).
115+ * Access via [`functions.pubsub.topic()`](providers_pubsub_.html# topic).
116116 */
117117export class TopicBuilder {
118118 /** @hidden */
You can’t perform that action at this time.
0 commit comments