Skip to content

Commit 93d5b73

Browse files
authored
Fix tags on remote config. (#1205)
1 parent 922295d commit 93d5b73

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/v1/providers/remoteConfig.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@
2323
import { CloudFunction, EventContext, makeCloudFunction } from "../cloud-functions";
2424
import { DeploymentOptions } from "../function-configuration";
2525

26-
/** @hidden */
26+
/** @internal */
2727
export const provider = "google.firebase.remoteconfig";
28-
/** @hidden */
28+
/** @internal */
2929
export const service = "firebaseremoteconfig.googleapis.com";
3030

3131
/**
@@ -35,15 +35,15 @@ export const service = "firebaseremoteconfig.googleapis.com";
3535
* @param handler A function that takes the updated Remote Config
3636
* template version metadata as an argument.
3737
*
38-
* @return A Cloud Function that you can export and deploy.
38+
* @returns A Cloud Function that you can export and deploy.
3939
*/
4040
export function onUpdate(
4141
handler: (version: TemplateVersion, context: EventContext) => PromiseLike<any> | any
4242
): CloudFunction<TemplateVersion> {
4343
return _onUpdateWithOptions(handler, {});
4444
}
4545

46-
/** @hidden */
46+
/** @internal */
4747
export function _onUpdateWithOptions(
4848
handler: (version: TemplateVersion, context: EventContext) => PromiseLike<any> | any,
4949
options: DeploymentOptions
@@ -59,7 +59,7 @@ export function _onUpdateWithOptions(
5959

6060
/** Builder used to create Cloud Functions for Remote Config. */
6161
export class UpdateBuilder {
62-
/** @hidden */
62+
/** @internal */
6363
constructor(private triggerResource: () => string, private options: DeploymentOptions) {}
6464

6565
/**

0 commit comments

Comments
 (0)