UNPKG

nuxt-users

Version:

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

16 lines (15 loc) 716 B
import type { User } from 'nuxt-users/utils'; interface Props { user?: User | null; } declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & { error: (error: unknown) => any; cancel: () => any; submit: (userData: User) => any; }, string, import("vue").PublicProps, Readonly<Props> & Readonly<{ onError?: ((error: unknown) => any) | undefined; onCancel?: (() => any) | undefined; onSubmit?: ((userData: User) => any) | undefined; }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; declare const _default: typeof __VLS_export; export default _default;