aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores.types.ts
diff options
context:
space:
mode:
authorLibravatar Markus Hatvan <markus_hatvan@aon.at>2021-10-14 23:32:05 +0200
committerLibravatar GitHub <noreply@github.com>2021-10-15 03:02:05 +0530
commit137555821f172e4eadc7cf099d4270ae8fc1374e (patch)
tree693882bbf7a6b2a24b5a727091d09586d0371007 /src/stores.types.ts
parentNew translations en-US.json (Spanish) (#2072) (diff)
downloadferdium-app-137555821f172e4eadc7cf099d4270ae8fc1374e.tar.gz
ferdium-app-137555821f172e4eadc7cf099d4270ae8fc1374e.tar.zst
ferdium-app-137555821f172e4eadc7cf099d4270ae8fc1374e.zip
chore: convert components to tsx (#2071)
Diffstat (limited to 'src/stores.types.ts')
-rw-r--r--src/stores.types.ts9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/stores.types.ts b/src/stores.types.ts
index dd879179d..e5978a392 100644
--- a/src/stores.types.ts
+++ b/src/stores.types.ts
@@ -182,7 +182,7 @@ interface RouterStore {
182 replace: () => void; 182 replace: () => void;
183} 183}
184 184
185interface ServicesStore { 185export interface ServicesStore {
186 actions: Actions; 186 actions: Actions;
187 api: Api; 187 api: Api;
188 clearCacheRequest: () => void; 188 clearCacheRequest: () => void;
@@ -334,8 +334,13 @@ interface UserStore {
334 team: () => void; 334 team: () => void;
335} 335}
336 336
337interface WorkspacesStore { 337export interface WorkspacesStore {
338 activeWorkspace: () => void; 338 activeWorkspace: () => void;
339 delete: ({ workspace }) => void;
340 update: ({ workspace }) => void;
341 create: ({ workspace }) => void;
342 edit: ({ workspace }) => void;
343 saving: boolean;
339 filterServicesByActiveWorkspace: () => void; 344 filterServicesByActiveWorkspace: () => void;
340 isFeatureActive: () => void; 345 isFeatureActive: () => void;
341 isFeatureEnabled: () => void; 346 isFeatureEnabled: () => void;