We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9438338 commit 6ade432Copy full SHA for 6ade432
packages/core/src/integrations/featureFlags/growthbook.ts
@@ -34,7 +34,7 @@ export type GrowthBookClassLike = new (...args: unknown[]) => GrowthBookLike;
34
* });
35
* ```
36
*/
37
-export const growthbookIntegration = defineIntegration(
+export const growthbookIntegration: IntegrationFn = defineIntegration(
38
({ growthbookClass }: { growthbookClass: GrowthBookClassLike }) => {
39
return {
40
name: 'GrowthBook',
@@ -58,7 +58,7 @@ export const growthbookIntegration = defineIntegration(
58
},
59
};
60
61
-) satisfies IntegrationFn;
+);
62
63
function _wrapAndCaptureBooleanResult(
64
original: (this: GrowthBookLike, ...args: unknown[]) => unknown,
0 commit comments