20 lines
353 B
TypeScript
20 lines
353 B
TypeScript
declare module 'nuxt/schema' {
|
|
interface AppConfig {
|
|
i18n: {
|
|
supportedLocales: Array<{
|
|
code: string;
|
|
file: string;
|
|
default: boolean;
|
|
}>;
|
|
defaultLocale: string;
|
|
};
|
|
ui: {
|
|
showBreadcrumbs: boolean;
|
|
showSearchBar: boolean;
|
|
isHeaderFixed: boolean;
|
|
isAuthModals: boolean;
|
|
toastPosition: string;
|
|
};
|
|
}
|
|
}
|
|
export {};
|