@@ -653,31 +653,31 @@ export interface Clerk {
653
653
buildUrlWithAuth ( to : string ) : string ;
654
654
655
655
/**
656
- * Returns the configured url where <SignIn/> is mounted or a custom sign-in page is rendered.
656
+ * Returns the configured url where ` <SignIn/>` is mounted or a custom sign-in page is rendered.
657
657
*
658
658
* @param opts A {@link RedirectOptions} object
659
659
*/
660
660
buildSignInUrl ( opts ?: RedirectOptions ) : string ;
661
661
662
662
/**
663
- * Returns the configured url where <SignUp/> is mounted or a custom sign-up page is rendered.
663
+ * Returns the configured url where ` <SignUp/>` is mounted or a custom sign-up page is rendered.
664
664
*
665
665
* @param opts A {@link RedirectOptions} object
666
666
*/
667
667
buildSignUpUrl ( opts ?: RedirectOptions ) : string ;
668
668
669
669
/**
670
- * Returns the url where <UserProfile /> is mounted or a custom user-profile page is rendered.
670
+ * Returns the url where ` <UserProfile />` is mounted or a custom user-profile page is rendered.
671
671
*/
672
672
buildUserProfileUrl ( ) : string ;
673
673
674
674
/**
675
- * Returns the configured url where <CreateOrganization /> is mounted or a custom create-organization page is rendered.
675
+ * Returns the configured url where ` <CreateOrganization />` is mounted or a custom create-organization page is rendered.
676
676
*/
677
677
buildCreateOrganizationUrl ( ) : string ;
678
678
679
679
/**
680
- * Returns the configured url where <OrganizationProfile /> is mounted or a custom organization-profile page is rendered.
680
+ * Returns the configured url where ` <OrganizationProfile />` is mounted or a custom organization-profile page is rendered.
681
681
*/
682
682
buildOrganizationProfileUrl ( ) : string ;
683
683
@@ -707,7 +707,7 @@ export interface Clerk {
707
707
buildAfterMultiSessionSingleSignOutUrl ( ) : string ;
708
708
709
709
/**
710
- * Returns the configured url where <Waitlist/> is mounted or a custom waitlist page is rendered.
710
+ * Returns the configured url where ` <Waitlist/>` is mounted or a custom waitlist page is rendered.
711
711
*/
712
712
buildWaitlistUrl ( opts ?: { initialValues ?: Record < string , string > } ) : string ;
713
713
@@ -720,31 +720,31 @@ export interface Clerk {
720
720
redirectWithAuth ( to : string ) : Promise < unknown > ;
721
721
722
722
/**
723
- * Redirects to the configured URL where <SignIn/> is mounted.
723
+ * Redirects to the configured URL where ` <SignIn/>` is mounted.
724
724
*
725
725
* @param opts A {@link RedirectOptions} object
726
726
*/
727
727
redirectToSignIn ( opts ?: SignInRedirectOptions ) : Promise < unknown > ;
728
728
729
729
/**
730
- * Redirects to the configured URL where <SignUp/> is mounted.
730
+ * Redirects to the configured URL where ` <SignUp/>` is mounted.
731
731
*
732
732
* @param opts A {@link RedirectOptions} object
733
733
*/
734
734
redirectToSignUp ( opts ?: SignUpRedirectOptions ) : Promise < unknown > ;
735
735
736
736
/**
737
- * Redirects to the configured URL where <UserProfile/> is mounted.
737
+ * Redirects to the configured URL where ` <UserProfile/>` is mounted.
738
738
*/
739
739
redirectToUserProfile : ( ) => Promise < unknown > ;
740
740
741
741
/**
742
- * Redirects to the configured URL where <OrganizationProfile /> is mounted.
742
+ * Redirects to the configured URL where ` <OrganizationProfile />` is mounted.
743
743
*/
744
744
redirectToOrganizationProfile : ( ) => Promise < unknown > ;
745
745
746
746
/**
747
- * Redirects to the configured URL where <CreateOrganization /> is mounted.
747
+ * Redirects to the configured URL where ` <CreateOrganization />` is mounted.
748
748
*/
749
749
redirectToCreateOrganization : ( ) => Promise < unknown > ;
750
750
@@ -764,7 +764,7 @@ export interface Clerk {
764
764
redirectToAfterSignOut : ( ) => void ;
765
765
766
766
/**
767
- * Redirects to the configured URL where <Waitlist/> is mounted.
767
+ * Redirects to the configured URL where ` <Waitlist/>` is mounted.
768
768
*/
769
769
redirectToWaitlist : ( ) => void ;
770
770
0 commit comments