@toantranmei/mei-nuxt3-fetcher
Version:
Minimal Nuxt 3 Module Starter.
18 lines (17 loc) • 391 B
TypeScript
/**
* Configuration for the whole module.
*/
export interface ModuleUserOptions {
/**
* Whether the module is enabled at all
*/
isEnabled?: boolean;
baseURL: string;
}
export interface ModuleUserOptionsNormalized extends ModuleUserOptions {
}
declare module 'nuxt/schema' {
interface PublicRuntimeConfig {
meiFetcher: ModuleUserOptionsNormalized;
}
}