modded7/tools/types/mainMenuConfig.ts

20 lines
272 B
TypeScript
Raw Normal View History

// Bare minimum.
interface Slideshow {
displayDuration: number;
fadeDuration: number;
images: string[];
}
interface Background {
image: string;
slideshow: Slideshow;
}
interface Other {
background: Background;
}
export interface MainMenuConfig {
other: Other;
}