diff options
| author | Fuwn <[email protected]> | 2023-12-16 18:50:51 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-12-16 18:50:51 -0800 |
| commit | b018bd62213b1a72114ecf47c6676204e33bd429 (patch) | |
| tree | 8b8ece187917e99fc5591fe2f5fa271861e8b260 /src/stores/settings.ts | |
| parent | feat(api): subsplease endpoint (diff) | |
| download | due.moe-b018bd62213b1a72114ecf47c6676204e33bd429.tar.xz due.moe-b018bd62213b1a72114ecf47c6676204e33bd429.zip | |
feat(anime): subtitle countdown
Diffstat (limited to 'src/stores/settings.ts')
| -rw-r--r-- | src/stores/settings.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/stores/settings.ts b/src/stores/settings.ts index 57d94c6b..b06fe58b 100644 --- a/src/stores/settings.ts +++ b/src/stores/settings.ts @@ -27,6 +27,7 @@ export interface Settings { disableUpcomingAnime: boolean; display24HourTime: boolean; displayCountdownRightAligned: boolean; + displayNativeCountdown: boolean; // eslint-disable-next-line @typescript-eslint/no-explicit-any [key: string]: any; } @@ -52,6 +53,7 @@ const defaultSettings: Settings = { disableUpcomingAnime: false, display24HourTime: false, displayCountdownRightAligned: false, + displayNativeCountdown: false, // Calculation roundDownChapters: true, |