Files
spark-store-abyss/index.d.ts
2025-06-06 01:56:59 +08:00

17 lines
339 B
TypeScript

import type { Release } from "./app.vue";
declare module "nuxt/schema" {
interface AppConfigInput {
latestRelease?: Release;
latestNews: {
title: string;
link: string;
};
}
type AppConfig = AppConfigInput;
}
// It is always important to ensure you import/export something when augmenting a type
export {};