UNPKG

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.

11 lines (10 loc) 461 B
/** * Default plausible values for signal hooks before Clerk loads. * * These mirror the defaults from React's StateProxy (stateProxy.ts). * When @clerk/shared exports these, this file can be replaced with * a direct import. */ import type { NullableSignInSignal, NullableSignUpSignal } from '@clerk/shared/types'; export declare const defaultSignInSignal: () => NullableSignInSignal; export declare const defaultSignUpSignal: () => NullableSignUpSignal;