From f782a58aabf19f72b179b29ac98762d61d74ff04 Mon Sep 17 00:00:00 2001 From: Joe Hanley Date: Tue, 10 May 2022 10:22:51 -0700 Subject: [PATCH] Fixing broken @link tags for https docs --- src/v2/providers/https.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/v2/providers/https.ts b/src/v2/providers/https.ts index 12e4063a0..d4d3d07c7 100644 --- a/src/v2/providers/https.ts +++ b/src/v2/providers/https.ts @@ -46,7 +46,7 @@ export interface HttpsOptions extends Omit { /** If true, allows CORS on requests to this function. * If this is a `string` or `RegExp`, allows requests from domains that match the provided value. * If this is an `Array`, allows requests from domains matching at least one entry of the array. - * Defaults to true for {@link CallableFunction}s and false otherwise. + * Defaults to true for {@link https.CallableFunction} and false otherwise. */ cors?: string | boolean | RegExp | Array; } @@ -79,7 +79,7 @@ export interface CallableFunction extends HttpsFunction { /** * Handles HTTPS requests. * @param opts - Options to set on this function - * @param handler - A function that takes a {@link Request} and response object, same signature as an Express app. + * @param handler - A function that takes a {@link https.Request} and response object, same signature as an Express app. * @returns A function that you can export and deploy. */ export function onRequest( @@ -91,7 +91,7 @@ export function onRequest( ): HttpsFunction; /** * Handles HTTPS requests. - * @param handler - A function that takes a {@link Request} and response object, same signature as an Express app. + * @param handler - A function that takes a {@link https.Request} and response object, same signature as an Express app. * @returns A function that you can export and deploy. */ export function onRequest( @@ -194,7 +194,7 @@ export function onRequest( /** * Declares a callable method for clients to call using a Firebase SDK. * @param opts - Options to set on this function. - * @param handler - A function that takes a {@link CallableRequest}. + * @param handler - A function that takes a {@link https.CallableRequest}. * @returns A function that you can export and deploy. */ export function onCall>( @@ -203,7 +203,7 @@ export function onCall>( ): CallableFunction; /** * Declares a callable method for clients to call using a Firebase SDK. - * @param handler - A function that takes a {@link CallableRequest}. + * @param handler - A function that takes a {@link https.CallableRequest}. * @returns A function that you can export and deploy. */ export function onCall>(