add multi image upload

This commit is contained in:
SethBurkart123
2024-03-31 20:50:52 +11:00
parent 8d55b878da
commit 93e97d3c21
6 changed files with 153 additions and 16 deletions
+7 -1
View File
@@ -4,5 +4,11 @@ type CustomTheme = {
defaultColour: string;
CanChangeColour: boolean;
CustomCSS: string;
CustomImages: string[];
CustomImages: CustomImage[];
}
type CustomImage = {
id: string;
url: string;
variableName: string;
}