aboutsummaryrefslogtreecommitdiffstats
path: root/src/@types/stores.types.ts
diff options
context:
space:
mode:
authorLibravatar MCMXC <16797721+mcmxcdev@users.noreply.github.com>2023-12-22 15:12:16 -0700
committerLibravatar GitHub <noreply@github.com>2023-12-22 15:12:16 -0700
commit85927dc191a935761b3f175bcd50e7c3076acc9e (patch)
treeceeb350621d824eeb9fdc9137a64a2e820b269b9 /src/@types/stores.types.ts
parentReset nightly version to 6.7.1-nightly.0 (diff)
downloadferdium-app-85927dc191a935761b3f175bcd50e7c3076acc9e.tar.gz
ferdium-app-85927dc191a935761b3f175bcd50e7c3076acc9e.tar.zst
ferdium-app-85927dc191a935761b3f175bcd50e7c3076acc9e.zip
refactor: remove unused code with knip (#1492)
- remove unused code snippets flagged by `npx knip`
Diffstat (limited to 'src/@types/stores.types.ts')
-rw-r--r--src/@types/stores.types.ts8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/@types/stores.types.ts b/src/@types/stores.types.ts
index 973889802..d036f8ee1 100644
--- a/src/@types/stores.types.ts
+++ b/src/@types/stores.types.ts
@@ -90,7 +90,6 @@ export interface AppStore extends TypedStore {
90 clearAppCacheRequest: () => void; 90 clearAppCacheRequest: () => void;
91 clipboardNotifications: boolean; 91 clipboardNotifications: boolean;
92 darkMode: boolean; 92 darkMode: boolean;
93 dictionaries: [];
94 enableSpellchecking: boolean; 93 enableSpellchecking: boolean;
95 enableTranslator: boolean; 94 enableTranslator: boolean;
96 fetchDataInterval: 4; 95 fetchDataInterval: 4;
@@ -234,7 +233,6 @@ interface SettingsStore extends TypedStore {
234 remove: (value: any) => void; 233 remove: (value: any) => void;
235 fileSystemSettingsTypes: any[]; 234 fileSystemSettingsTypes: any[];
236 loaded: boolean; 235 loaded: boolean;
237 updateAppSettingsRequest: () => void;
238 _fileSystemSettingsCache: () => void; 236 _fileSystemSettingsCache: () => void;
239 all: ISettings; 237 all: ISettings;
240 app: AppStore; 238 app: AppStore;
@@ -304,7 +302,6 @@ interface UserStore extends TypedStore {
304 accountType: () => void; 302 accountType: () => void;
305 authToken: () => void; 303 authToken: () => void;
306 deleteAccountRequest: () => void; 304 deleteAccountRequest: () => void;
307 fetchUserInfoInterval: null;
308 getLegacyServicesRequest: () => void; 305 getLegacyServicesRequest: () => void;
309 getUserInfoRequest: CachedRequest; 306 getUserInfoRequest: CachedRequest;
310 hasCompletedSignup: () => void; 307 hasCompletedSignup: () => void;
@@ -327,15 +324,10 @@ interface UserStore extends TypedStore {
327 _retrievePassword: () => void; 324 _retrievePassword: () => void;
328 changeServerRoute: () => void; 325 changeServerRoute: () => void;
329 data: User; 326 data: User;
330 importRoute: string;
331 inviteRoute: string;
332 isLoggedIn: boolean; 327 isLoggedIn: boolean;
333 isTokenExpired: boolean; 328 isTokenExpired: boolean;
334 legacyServices: () => void;
335 loginRoute: string; 329 loginRoute: string;
336 logoutRoute: string;
337 passwordRoute: string; 330 passwordRoute: string;
338 setupRoute: string;
339 signupRoute: string; 331 signupRoute: string;
340 team: () => void; 332 team: () => void;
341} 333}