UNPKG

nuxt-users

Version:

A comprehensive user management module for Nuxt 3 and Nuxt 4 applications with authentication, authorization, database support, and CLI tools

32 lines (31 loc) 928 B
interface Props { /** * Custom redirect endpoint for Google OAuth * @default '/api/nuxt-users/auth/google/redirect' */ redirectEndpoint?: string; /** * Button text * @default 'Continue with Google' */ buttonText?: string; /** * Show Google logo in button * @default true */ showLogo?: boolean; /** * Custom CSS class for button */ class?: string; } declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & { click: () => any; }, string, import("vue").PublicProps, Readonly<Props> & Readonly<{ onClick?: (() => any) | undefined; }>, { buttonText: string; showLogo: boolean; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; declare const _default: typeof __VLS_export; export default _default;