60 lines
1.5 KiB
TypeScript
60 lines
1.5 KiB
TypeScript
import * as _nuxt_schema0 from "@nuxt/schema";
|
|
|
|
//#region src/module/index.d.ts
|
|
interface ModuleOptions {
|
|
features?: {
|
|
/**
|
|
* Whether to update references when renaming auto imported component files.
|
|
* @default true
|
|
*/
|
|
components?: boolean;
|
|
/**
|
|
* Whether to enable Go to Definition for dynamic imports with glob patterns.
|
|
* @default true
|
|
*/
|
|
importGlob?: boolean;
|
|
/**
|
|
* Whether to enable Go to Definition for nitro routes in data fetching methods.
|
|
* @default true
|
|
*/
|
|
nitroRoutes?: boolean;
|
|
/**
|
|
* Whether to enable Go to Definition for page metadata.
|
|
* @default true
|
|
*/
|
|
pageMeta?: boolean;
|
|
/**
|
|
* Whether to enable Go to Definition for runtime config.
|
|
* @default true
|
|
*/
|
|
runtimeConfig?: boolean;
|
|
/**
|
|
* Whether to enable Go to Definition for typed pages.
|
|
* @default true
|
|
*/
|
|
typedPages?: boolean;
|
|
/**
|
|
* Whether to enable enhanced navigation for auto imported APIs.
|
|
* @default true
|
|
*/
|
|
unimport?: boolean | {
|
|
/**
|
|
* Whether to enable Find References for SFC on `<template>`.
|
|
*/
|
|
componentReferences: boolean;
|
|
};
|
|
};
|
|
}
|
|
declare const _default: _nuxt_schema0.NuxtModule<ModuleOptions, {
|
|
features: {
|
|
components: true;
|
|
importGlob: true;
|
|
nitroRoutes: true;
|
|
pageMeta: true;
|
|
runtimeConfig: true;
|
|
typedPages: true;
|
|
unimport: true;
|
|
};
|
|
}, true>;
|
|
//#endregion
|
|
export { ModuleOptions, _default as default }; |