feat(ThemeCreator): add accordian menu's to toggle large settings

This commit is contained in:
SethBurkart123
2024-10-04 13:18:33 +10:00
parent 008666d81d
commit e55fb35bf9
3 changed files with 104 additions and 55 deletions
+10
View File
@@ -15,6 +15,16 @@ export type CustomTheme = {
forceDark?: boolean;
}
export type LoadedCustomTheme = CustomTheme & {
CustomImages: Array<{
id: string;
blob: Blob;
variableName: string;
url: string | null;
}>;
coverImageUrl?: string;
};
export type DownloadedTheme = CustomTheme & {
webURL: string;
}