Skip to content

Commit b660e28

Browse files
committed
chore: fix type tests
1 parent 0f340a8 commit b660e28

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

packages/react/src/isomorphicClerk.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import type {
77
__internal_CheckoutProps,
88
__internal_EnableOrganizationsPromptProps,
99
__internal_OAuthConsentProps,
10+
OAuthConsentProps,
1011
__internal_PlanDetailsProps,
1112
__internal_SubscriptionDetailsProps,
1213
__internal_UserVerificationModalProps,
@@ -1298,6 +1299,14 @@ export class IsomorphicClerk implements IsomorphicLoadedClerk {
12981299
}
12991300
};
13001301

1302+
mountOAuthConsent = (node: HTMLDivElement, props?: OAuthConsentProps) => {
1303+
this.__internal_mountOAuthConsent(node, props);
1304+
};
1305+
1306+
unmountOAuthConsent = (node: HTMLDivElement) => {
1307+
this.__internal_unmountOAuthConsent(node);
1308+
};
1309+
13011310
mountTaskChooseOrganization = (node: HTMLDivElement, props?: TaskChooseOrganizationProps): void => {
13021311
if (this.clerkjs && this.loaded) {
13031312
this.clerkjs.mountTaskChooseOrganization(node, props);

0 commit comments

Comments
 (0)