@lucasroll62/nuxt3-auth
Version:
An alternative module to @nuxtjs/auth
8 lines (7 loc) • 382 B
TypeScript
import type { ProviderOptions, ProviderPartialOptions } from '../types';
import type { Oauth2SchemeOptions } from '../runtime';
import type { Nuxt } from '@nuxt/schema';
export interface Auth0ProviderOptions extends ProviderOptions, Oauth2SchemeOptions {
domain: string;
}
export declare function auth0(nuxt: Nuxt, strategy: ProviderPartialOptions<Auth0ProviderOptions>): void;