fix: svelte settings Sync

This commit is contained in:
sethburkart123
2024-09-04 09:42:07 +10:00
parent e4ba89073c
commit c008b32efa
15 changed files with 220 additions and 233 deletions
+2 -2
View File
@@ -1,11 +1,11 @@
import type { SettingsState } from './AppProps';
import { ComponentType } from 'svelte';
import type { Component } from 'svelte';
export interface SettingsList {
title: string;
id: number;
description: string;
component: ComponentType;
Component: Component;
props?: any;
}
export interface SettingsProps {