mirror of
https://github.com/spark-store-project/spark-store-abyss
synced 2025-12-17 04:41:37 +08:00
18 lines
363 B
TypeScript
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 {};
|