From d39c81f59c4cb0e2257b976e486ed143f3ad46d5 Mon Sep 17 00:00:00 2001 From: jiwangyihao Date: Tue, 10 Jun 2025 22:31:58 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E8=B0=83=E6=95=B4=20AppConfigInput=20?= =?UTF-8?q?=E6=8E=A5=E5=8F=A3=EF=BC=8C=E9=87=8D=E6=96=B0=E6=8E=92=E5=88=97?= =?UTF-8?q?=E5=B1=9E=E6=80=A7=E9=A1=BA=E5=BA=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.d.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/index.d.ts b/index.d.ts index 6b35212..42c4ab2 100644 --- a/index.d.ts +++ b/index.d.ts @@ -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;