mirror of
https://github.com/BetterSEQTA/BetterSEQTA-Plus.git
synced 2026-06-06 11:44:40 +00:00
12 lines
294 B
TypeScript
12 lines
294 B
TypeScript
import type { SettingsState } from './AppProps';
|
|
|
|
export interface SettingsList {
|
|
title: string;
|
|
description: string;
|
|
modifyElement: JSX.Element;
|
|
}
|
|
export interface SettingsProps {
|
|
settingsState: SettingsState;
|
|
setSettingsState: React.Dispatch<React.SetStateAction<SettingsState>>;
|
|
}
|