modded7/buildtools/types/mainMenuConfig.ts
Exa 7a329bc07b Add Nomifactory's build scripts
Modified slightly to use LICENSE rather than LICENSE.md
2022-02-10 12:07:06 -08:00

20 lines
272 B
TypeScript

// 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;
}