Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion src/cloud-functions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ export interface EventContext {

/**
* An object containing the values of the wildcards in the `path` parameter
* provided to the [`ref()`](functions.database#.ref) method for a Realtime
* provided to the [`ref()`](providers_database_.html#ref) method for a Realtime
* Database trigger. Cannot be accessed while inside the handler namespace.
*/
params: { [option: string]: any };
Expand Down
5 changes: 3 additions & 2 deletions src/providers/analytics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ export class UserDimensions {
* A map of user properties set with the
* [`setUserProperty`](https://firebase.google.com/docs/analytics/android/properties) API.
*
* All values are [`UserPropertyValue`](functions.analytics.UserPropertyValue) objects.
* All values are [`UserPropertyValue`](providers_analytics_.userpropertyvalue) objects.
*/
userProperties: { [key: string]: UserPropertyValue };

Expand Down Expand Up @@ -319,7 +319,8 @@ export interface DeviceInfo {

/**
* The time zone of the device when data was uploaded, as seconds skew from UTC.
* Use this to calculate the device's local time for [`event.timestamp`](functions.Event#timestamp).
* Use this to calculate the device's local time for
* [`EventContext.timestamp`](cloud_functions_eventcontext.html#timestamp).
*/
deviceTimeZoneOffsetSeconds: number;

Expand Down
4 changes: 2 additions & 2 deletions src/providers/database.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export function instance(instance: string) {
* 1. Cloud Functions allows wildcards in the `path` name. Any `path` component
* in curly brackets (`{}`) is a wildcard that matches all strings. The value
* that matched a certain invocation of a Cloud Function is returned as part
* of the [`event.params`](functions.EventContext#params) object. For
* of the [`EventContext.params`](cloud_functions_eventcontext.html#params object. For
* example, `ref("messages/{messageId}")` matches changes at
* `/messages/message1` or `/messages/message2`, resulting in
* `event.params.messageId` being set to `"message1"` or `"message2"`,
Expand Down Expand Up @@ -104,7 +104,7 @@ export function _instanceWithOptions(
/**
* The Firebase Realtime Database instance builder interface.
*
* Access via [`functions.database.instance()`](functions.database#.instance).
* Access via [`database.instance()`](providers_database_.html#instance).
*/
export class InstanceBuilder {
/** @hidden */
Expand Down
2 changes: 1 addition & 1 deletion src/providers/pubsub.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ export function _scheduleWithOptions(
/**
* The Google Cloud Pub/Sub topic builder.
*
* Access via [`functions.pubsub.topic()`](functions.pubsub#.topic).
* Access via [`functions.pubsub.topic()`](providers_pubsub_.html#topic).
*/
export class TopicBuilder {
/** @hidden */
Expand Down