We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c07b7fa commit 6c61677Copy full SHA for 6c61677
src/v1/index.ts
@@ -56,3 +56,6 @@ export * from "./cloud-functions";
56
export * from "./config";
57
export * from "./function-builder";
58
export * from "./function-configuration";
59
+// NOTE: Equivalent to `export * as params from "../params"` but api-extractor doesn't support that syntax.
60
+import * as params from "../params";
61
+export { params };
src/v2/index.ts
@@ -70,3 +70,6 @@ export {
70
71
export { CloudFunction, CloudEvent, ParamsOf } from "./core";
72
export { Change } from "../common/change";
73
74
75
0 commit comments