mirror of
https://github.com/ksyasuda/SubMiner.git
synced 2026-05-26 00:55:16 -07:00
0298a066ad
- Reorganize Configuration window into Appearance, Behavior, Anki, Input, and Integration sections - Add AnkiConnect-backed deck, note-type, and field pickers in the Anki section - Add click-to-learn keybinding controls - Move known-word and N+1 highlight colors to subtitleStyle.knownWordColor / subtitleStyle.nPlusOneColor; legacy ankiConnect.knownWords.color and ankiConnect.nPlusOne.nPlusOne keys still accepted with deprecation warnings - Add deckNames, modelNames, modelFieldNames, and fieldNamesForDeck methods to AnkiConnectClient - Mark discordPresence.presenceStyle as an enum in the config registry
9 lines
413 B
TypeScript
9 lines
413 B
TypeScript
import type { ConfigSettingsField, ConfigSettingsSnapshotValue } from '../types/settings';
|
|
|
|
export interface SettingsControlContext {
|
|
setFieldError(path: string, message: string | null): void;
|
|
updateDraft(path: string, value: ConfigSettingsSnapshotValue): void;
|
|
valueForField(field: ConfigSettingsField): ConfigSettingsSnapshotValue;
|
|
valueForPath(path: string): ConfigSettingsSnapshotValue | undefined;
|
|
}
|