nuxt-users
Version:
A comprehensive user management module for Nuxt 3 and Nuxt 4 applications with authentication, authorization, database support, and CLI tools
10 lines (5 loc) • 327 B
text/typescript
import type { NuxtModule } from '@nuxt/schema'
import type { default as Module } from './module.mjs'
export type ModuleOptions = typeof Module extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
export { default, type defaultOptions } from './module.mjs'
export * from '../dist/runtime/server/internal/index.js'