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" {
interface AppConfigInput {
latestRelease?: Release;
latestNews: {
title: string;
link: string;
};
appIcons: string[];
latestRelease?: Release;
}
type AppConfig = AppConfigInput;