From 137555821f172e4eadc7cf099d4270ae8fc1374e Mon Sep 17 00:00:00 2001 From: Markus Hatvan Date: Thu, 14 Oct 2021 23:32:05 +0200 Subject: chore: convert components to tsx (#2071) --- src/stores.types.ts | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'src/stores.types.ts') 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 { replace: () => void; } -interface ServicesStore { +export interface ServicesStore { actions: Actions; api: Api; clearCacheRequest: () => void; @@ -334,8 +334,13 @@ interface UserStore { team: () => void; } -interface WorkspacesStore { +export interface WorkspacesStore { activeWorkspace: () => void; + delete: ({ workspace }) => void; + update: ({ workspace }) => void; + create: ({ workspace }) => void; + edit: ({ workspace }) => void; + saving: boolean; filterServicesByActiveWorkspace: () => void; isFeatureActive: () => void; isFeatureEnabled: () => void; -- cgit v1.2.3-54-g00ecf