fix: update props and types for General Settings page

This commit is contained in:
sethburkart123
2024-09-04 13:18:48 +10:00
parent c008b32efa
commit 19102f9bcd
6 changed files with 52 additions and 93 deletions
+1 -2
View File
@@ -1,11 +1,10 @@
import type { SettingsState } from './AppProps';
import type { Component } from 'svelte';
export interface SettingsList {
title: string;
id: number;
description: string;
Component: Component;
Component: any; /* TODO: Give this a type */
props?: any;
}
export interface SettingsProps {