aboutsummaryrefslogtreecommitdiffstats
path: root/src/@types/stores.types.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/@types/stores.types.ts')
-rw-r--r--src/@types/stores.types.ts11
1 files changed, 3 insertions, 8 deletions
diff --git a/src/@types/stores.types.ts b/src/@types/stores.types.ts
index 973889802..c2d7bd78a 100644
--- a/src/@types/stores.types.ts
+++ b/src/@types/stores.types.ts
@@ -87,12 +87,14 @@ export interface AppStore extends TypedStore {
87 authRequestFailed: () => void; 87 authRequestFailed: () => void;
88 autoLaunchOnStart: () => void; 88 autoLaunchOnStart: () => void;
89 automaticUpdates: boolean; 89 automaticUpdates: boolean;
90 isTwoFactorAutoCatcherEnabled: boolean;
91 twoFactorAutoCatcherMatcher: string;
90 clearAppCacheRequest: () => void; 92 clearAppCacheRequest: () => void;
91 clipboardNotifications: boolean; 93 clipboardNotifications: boolean;
92 darkMode: boolean; 94 darkMode: boolean;
93 dictionaries: [];
94 enableSpellchecking: boolean; 95 enableSpellchecking: boolean;
95 enableTranslator: boolean; 96 enableTranslator: boolean;
97 useSelfSignedCertificates: boolean;
96 fetchDataInterval: 4; 98 fetchDataInterval: 4;
97 get(key: string): any; 99 get(key: string): any;
98 getAppCacheSizeRequest: () => void; 100 getAppCacheSizeRequest: () => void;
@@ -234,7 +236,6 @@ interface SettingsStore extends TypedStore {
234 remove: (value: any) => void; 236 remove: (value: any) => void;
235 fileSystemSettingsTypes: any[]; 237 fileSystemSettingsTypes: any[];
236 loaded: boolean; 238 loaded: boolean;
237 updateAppSettingsRequest: () => void;
238 _fileSystemSettingsCache: () => void; 239 _fileSystemSettingsCache: () => void;
239 all: ISettings; 240 all: ISettings;
240 app: AppStore; 241 app: AppStore;
@@ -304,7 +305,6 @@ interface UserStore extends TypedStore {
304 accountType: () => void; 305 accountType: () => void;
305 authToken: () => void; 306 authToken: () => void;
306 deleteAccountRequest: () => void; 307 deleteAccountRequest: () => void;
307 fetchUserInfoInterval: null;
308 getLegacyServicesRequest: () => void; 308 getLegacyServicesRequest: () => void;
309 getUserInfoRequest: CachedRequest; 309 getUserInfoRequest: CachedRequest;
310 hasCompletedSignup: () => void; 310 hasCompletedSignup: () => void;
@@ -327,15 +327,10 @@ interface UserStore extends TypedStore {
327 _retrievePassword: () => void; 327 _retrievePassword: () => void;
328 changeServerRoute: () => void; 328 changeServerRoute: () => void;
329 data: User; 329 data: User;
330 importRoute: string;
331 inviteRoute: string;
332 isLoggedIn: boolean; 330 isLoggedIn: boolean;
333 isTokenExpired: boolean; 331 isTokenExpired: boolean;
334 legacyServices: () => void;
335 loginRoute: string; 332 loginRoute: string;
336 logoutRoute: string;
337 passwordRoute: string; 333 passwordRoute: string;
338 setupRoute: string;
339 signupRoute: string; 334 signupRoute: string;
340 team: () => void; 335 team: () => void;
341} 336}