add theme saving and indexing

This commit is contained in:
SethBurkart123
2024-04-01 15:34:58 +11:00
parent 3c67356f47
commit c9431de33f
4 changed files with 82 additions and 17 deletions
+2 -1
View File
@@ -1,4 +1,5 @@
type CustomTheme = {
id: string;
name: string;
description: string;
defaultColour: string;
@@ -9,6 +10,6 @@ type CustomTheme = {
type CustomImage = {
id: string;
url: string;
blob: Blob;
variableName: string;
}