diff options
| author | Fuwn <[email protected]> | 2024-01-27 02:32:52 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-01-27 02:32:52 -0800 |
| commit | 8fb16c92d0b83b9daf3e571d6baad59984023728 (patch) | |
| tree | 4584d6c334b1bf003b0205abe22756b665cd4476 /src/stores/settings.ts | |
| parent | feat(settings): random helper (diff) | |
| download | due.moe-8fb16c92d0b83b9daf3e571d6baad59984023728.tar.xz due.moe-8fb16c92d0b83b9daf3e571d6baad59984023728.zip | |
feat(settings): more helpers
Diffstat (limited to 'src/stores/settings.ts')
| -rw-r--r-- | src/stores/settings.ts | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/stores/settings.ts b/src/stores/settings.ts index 817edfff..e95c08c0 100644 --- a/src/stores/settings.ts +++ b/src/stores/settings.ts @@ -22,7 +22,17 @@ export interface Settings { calculateDisableOutOfDateVolumeWarning: boolean; displayPlannedAnime: boolean; displayFurigana: boolean; - displayAoButa: 'mai' | 'nodoka' | 'kaede' | 'random' | 'none'; + displayAoButa: + | 'kaede' + | 'mai' + | 'mai_2' + | 'nodoka' + | 'rio' + | 'sakuta' + | 'shouko' + | 'tomoe' + | 'random' + | 'none'; disableManga: boolean; disableAnime: boolean; disableUpcomingAnime: boolean; |