Files
spark-store-abyss/index.d.ts

18 lines
363 B
TypeScript

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