feat: move svelte interface to 'src/interface'

This commit is contained in:
sethburkart123
2024-11-01 17:37:20 +11:00
parent fe82365c24
commit 9de6e8feaf
57 changed files with 33 additions and 33 deletions
+7
View File
@@ -0,0 +1,7 @@
export interface SettingsList {
title: string;
id: number;
description: string;
Component: any; /* TODO: Give this a type */
props?: any;
}
+7
View File
@@ -0,0 +1,7 @@
export type Theme = {
name: string;
description: string;
coverImage: string;
marqueeImage: string;
id: string;
};