20 lines
272 B
TypeScript
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;
|
|
}
|