UNPKG

@clerk/nextjs

Version:

Clerk SDK for NextJS

18 lines 717 B
/** * These need to be explicitly listed. Do not use an * here. * If you do, app router will break. */ import { useOAuthConsent as useOAuthConsentOriginal } from '@clerk/shared/react'; import { OAuthConsent as OAuthConsentOriginal } from './client-boundary/uiComponents'; export { MultisessionAppSupport } from './client-boundary/controlComponents'; /** * @deprecated Import `OAuthConsent` from `@clerk/nextjs` instead. */ declare const OAuthConsent: typeof OAuthConsentOriginal; export { OAuthConsent }; /** * @deprecated Import `useOAuthConsent` from `@clerk/nextjs` instead. */ declare const useOAuthConsent: typeof useOAuthConsentOriginal; export { useOAuthConsent }; //# sourceMappingURL=internal.d.ts.map