aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores.types.ts
diff options
context:
space:
mode:
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;