Add configurable minimum sentence length for N+1 targets

This commit is contained in:
2026-02-15 18:34:10 -08:00
parent f1b5082801
commit 667bde944c
11 changed files with 180 additions and 9 deletions

View File

@@ -239,6 +239,7 @@ export interface AnkiConnectConfig {
decks?: string[];
nPlusOne?: string;
knownWord?: string;
minSentenceWords?: number;
};
behavior?: {
overwriteAudio?: boolean;
@@ -399,6 +400,7 @@ export interface ResolvedConfig {
decks: string[];
nPlusOne: string;
knownWord: string;
minSentenceWords: number;
};
behavior: {
overwriteAudio: boolean;