Skip to content

Commit a10dd78

Browse files
authored
Hide implementation of defineFloat. (#1341)
Firebase CLI doesn't support defineFloat yet (firebase/firebase-tools#5433).
1 parent 7481764 commit a10dd78

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
- Allow Functions to specify vpcConnector as a string parameter (#1329)
22
- Upgrade jsonwebtoken to version 9 (#1336)
33
- Adds 'eventarcpublishing' as required API to custom event function
4+
- Hide type information of defineFloat in params module - it's not supported yet (#1341)

src/params/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,8 @@ export function defineInt(name: string, options: ParamOptions<number> = {}): Int
159159
* @param name The name of the environment variable to use to load the param.
160160
* @param options Configuration options for the param.
161161
* @returns A Param with a `number` return type for `.value`.
162+
*
163+
* @internal
162164
*/
163165
export function defineFloat(name: string, options: ParamOptions<number> = {}): FloatParam {
164166
const param = new FloatParam(name, options);

0 commit comments

Comments
 (0)