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