svelte-clerk
Version:
Svelte Clerk is the easiest way to add authentication and user management to your Svelte and SvelteKit applications. Add sign up, sign in, and profile management to your application in minutes.
5 lines (4 loc) • 323 B
TypeScript
import type { HandleOAuthCallbackParams } from '@clerk/shared/types';
declare const AuthenticateWithRedirectCallback: import("svelte").Component<HandleOAuthCallbackParams, {}, "">;
type AuthenticateWithRedirectCallback = ReturnType<typeof AuthenticateWithRedirectCallback>;
export default AuthenticateWithRedirectCallback;