add cover image upload

This commit is contained in:
SethBurkart123
2024-04-05 13:16:03 +11:00
parent c7e7b41ce9
commit f30eec8f9e
2 changed files with 28 additions and 1 deletions
+3
View File
@@ -7,6 +7,8 @@ export type CustomTheme = {
allowBackgrounds: boolean;
CustomCSS: string;
CustomImages: CustomImage[];
coverImage: Blob | null;
isEditable: boolean;
}
export type CustomImage = {
@@ -23,6 +25,7 @@ export type CustomImageBase64 = {
export type CustomThemeBase64 = Omit<CustomTheme, 'CustomImages'> & {
CustomImages: CustomImageBase64[];
coverImage: string | null;
}
export type ThemeList = {