UNPKG

@toantranmei/mei-nuxt3-fetcher

Version:
18 lines (17 loc) 391 B
/** * 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; } }