UNPKG

nuxt-users

Version:

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

39 lines (38 loc) 1.38 kB
interface LogoutLinkProps { redirectTo?: string; linkText?: string; confirmMessage?: string; class?: string; style?: string | Record<string, string | number>; linkClass?: string; linkStyle?: string | Record<string, string | number>; errorClass?: string; errorStyle?: string | Record<string, string | number>; containerClass?: string; containerStyle?: string | Record<string, string | number>; } declare var __VLS_1: {}; type __VLS_Slots = {} & { default?: (props: typeof __VLS_1) => any; }; declare const __VLS_base: import("vue").DefineComponent<LogoutLinkProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & { success: () => any; error: (error: string) => any; click: () => any; }, string, import("vue").PublicProps, Readonly<LogoutLinkProps> & Readonly<{ onSuccess?: (() => any) | undefined; onError?: ((error: string) => any) | undefined; onClick?: (() => any) | undefined; }>, { redirectTo: string; linkText: string; confirmMessage: string; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>; declare const _default: typeof __VLS_export; export default _default; type __VLS_WithSlots<T, S> = T & { new (): { $slots: S; }; };