Skip to content

Commit 6ade432

Browse files
committed
rm satisfies keyword
1 parent 9438338 commit 6ade432

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/core/src/integrations/featureFlags/growthbook.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export type GrowthBookClassLike = new (...args: unknown[]) => GrowthBookLike;
3434
* });
3535
* ```
3636
*/
37-
export const growthbookIntegration = defineIntegration(
37+
export const growthbookIntegration: IntegrationFn = defineIntegration(
3838
({ growthbookClass }: { growthbookClass: GrowthBookClassLike }) => {
3939
return {
4040
name: 'GrowthBook',
@@ -58,7 +58,7 @@ export const growthbookIntegration = defineIntegration(
5858
},
5959
};
6060
},
61-
) satisfies IntegrationFn;
61+
);
6262

6363
function _wrapAndCaptureBooleanResult(
6464
original: (this: GrowthBookLike, ...args: unknown[]) => unknown,

0 commit comments

Comments
 (0)