feat: 调整 AppConfigInput 接口,重新排列属性顺序

This commit is contained in:
2025-06-10 22:31:58 +08:00
parent 6bd6293ce3
commit d39c81f59c

3
index.d.ts vendored
View File

@@ -2,11 +2,12 @@ import type { Release } from "./app.vue";
declare module "nuxt/schema" { declare module "nuxt/schema" {
interface AppConfigInput { interface AppConfigInput {
latestRelease?: Release;
latestNews: { latestNews: {
title: string; title: string;
link: string; link: string;
}; };
appIcons: string[];
latestRelease?: Release;
} }
type AppConfig = AppConfigInput; type AppConfig = AppConfigInput;