diff --git a/CHANGELOG.md b/CHANGELOG.md index b28e171f8..a3994c5b0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,4 @@ - Allow Functions to specify vpcConnector as a string parameter (#1329) - Upgrade jsonwebtoken to version 9 (#1336) - Adds 'eventarcpublishing' as required API to custom event function +- Hide type information of defineFloat in params module - it's not supported yet (#1341) diff --git a/src/params/index.ts b/src/params/index.ts index ee83814b4..550ab9db9 100644 --- a/src/params/index.ts +++ b/src/params/index.ts @@ -159,6 +159,8 @@ export function defineInt(name: string, options: ParamOptions = {}): Int * @param name The name of the environment variable to use to load the param. * @param options Configuration options for the param. * @returns A Param with a `number` return type for `.value`. + * + * @internal */ export function defineFloat(name: string, options: ParamOptions = {}): FloatParam { const param = new FloatParam(name, options);