UNPKG

@auth/sveltekit

Version:

Authentication for SvelteKit.

29 lines 1.01 kB
import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; className?: string | undefined; provider?: Partial<import("@auth/core/providers").ProviderId | undefined>; signInPage?: string | undefined; options?: FormData | ({ redirectTo?: string; redirect?: boolean | undefined; } & Record<string, any>) | undefined; authorizationParams?: string | Record<string, string> | URLSearchParams | string[][] | undefined; }; events: { [evt: string]: CustomEvent<any>; }; slots: { credentials: {}; email: {}; submitButton: {}; }; }; export type SignInProps = typeof __propDef.props; export type SignInEvents = typeof __propDef.events; export type SignInSlots = typeof __propDef.slots; export default class SignIn extends SvelteComponentTyped<SignInProps, SignInEvents, SignInSlots> { } export {}; //# sourceMappingURL=SignIn.svelte.d.ts.map