chore(knip): trim dead exports and tool noise

This commit is contained in:
plebeius
2026-03-08 16:37:34 +08:00
parent b2137c7f91
commit 90a01057f2
30 changed files with 106 additions and 383 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
import { create } from 'zustand';
export type AllFeedFilter = 'all' | 'nsfw' | 'sfw';
type AllFeedFilter = 'all' | 'nsfw' | 'sfw';
interface AllFeedFilterStore {
filter: AllFeedFilter;
+1 -1
View File
@@ -1,6 +1,6 @@
import { create } from 'zustand';
export type BoardFilter = 'all' | 'nsfw' | 'worksafe';
type BoardFilter = 'all' | 'nsfw' | 'worksafe';
interface BoardsFilterStore {
useCatalogLinks: boolean;
+2 -2
View File
@@ -1,8 +1,8 @@
import { create } from 'zustand';
import { persist } from 'zustand/middleware';
export type AlertThresholdUnit = 'hours' | 'minutes';
export type ModQueueViewMode = 'compact' | 'feed';
type AlertThresholdUnit = 'hours' | 'minutes';
type ModQueueViewMode = 'compact' | 'feed';
interface ModQueueState {
alertThresholdValue: number;