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.
9 lines (8 loc) • 386 B
TypeScript
import type { ButtonProps, PropsWithChildren } from '../../types';
import type { SignOutOptions } from '@clerk/types';
type $$ComponentProps = PropsWithChildren<SignOutOptions, {
signOut(): void;
}> & ButtonProps;
declare const SignOutButton: import("svelte").Component<$$ComponentProps, {}, "">;
type SignOutButton = ReturnType<typeof SignOutButton>;
export default SignOutButton;