aboutsummaryrefslogtreecommitdiffstats
path: root/src/@types
diff options
context:
space:
mode:
authorLibravatar Balaji Vijayakumar <kuttibalaji.v6@gmail.com>2022-10-25 18:14:55 +0530
committerLibravatar GitHub <noreply@github.com>2022-10-25 12:44:55 +0000
commitb77663a3752467b7be3eff8a765a71330548d8e0 (patch)
tree16aad95e8d781684b543482f5b4423674f45be08 /src/@types
parentTransform 'AuthLayoutContainer' component hierarchy to tsx (#699) (diff)
downloadferdium-app-b77663a3752467b7be3eff8a765a71330548d8e0.tar.gz
ferdium-app-b77663a3752467b7be3eff8a765a71330548d8e0.tar.zst
ferdium-app-b77663a3752467b7be3eff8a765a71330548d8e0.zip
refactor: convert Sidebar to typescript (#703)
Diffstat (limited to 'src/@types')
-rw-r--r--src/@types/stores.types.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/@types/stores.types.ts b/src/@types/stores.types.ts
index 6730242c1..30898a8a7 100644
--- a/src/@types/stores.types.ts
+++ b/src/@types/stores.types.ts
@@ -343,7 +343,7 @@ export interface WorkspacesStore extends TypedStore {
343 create: ({ workspace }) => void; 343 create: ({ workspace }) => void;
344 edit: ({ workspace }) => void; 344 edit: ({ workspace }) => void;
345 saving: boolean; 345 saving: boolean;
346 filterServicesByActiveWorkspace: () => void; 346 filterServicesByActiveWorkspace: (services: Service[]) => Service[];
347 isFeatureActive: () => void; 347 isFeatureActive: () => void;
348 isAnyWorkspaceActive: boolean; 348 isAnyWorkspaceActive: boolean;
349 isSettingsRouteActive: () => void; 349 isSettingsRouteActive: () => void;