summaryrefslogtreecommitdiffstats
path: root/src/@types
diff options
context:
space:
mode:
authorLibravatar muhamedsalih-tw <104364298+muhamedsalih-tw@users.noreply.github.com>2022-11-17 05:45:39 +0530
committerLibravatar GitHub <noreply@github.com>2022-11-17 00:15:39 +0000
commitd9502c7516bc2d4ae467c6ea8a2e4816b0885f37 (patch)
treeb339c587a5529ac26d52cfc12d9972a8a00255e6 /src/@types
parentTransform JSX components to TSX (#755) (diff)
downloadferdium-app-d9502c7516bc2d4ae467c6ea8a2e4816b0885f37.tar.gz
ferdium-app-d9502c7516bc2d4ae467c6ea8a2e4816b0885f37.tar.zst
ferdium-app-d9502c7516bc2d4ae467c6ea8a2e4816b0885f37.zip
Transfrom workspace components to ts (#775)
Diffstat (limited to 'src/@types')
-rw-r--r--src/@types/stores.types.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/@types/stores.types.ts b/src/@types/stores.types.ts
index bbb37cff9..edea41ea9 100644
--- a/src/@types/stores.types.ts
+++ b/src/@types/stores.types.ts
@@ -2,8 +2,8 @@ import Workspace from '../features/workspaces/models/Workspace';
2import Recipe from '../models/Recipe'; 2import Recipe from '../models/Recipe';
3import Service from '../models/Service'; 3import Service from '../models/Service';
4import User from '../models/User'; 4import User from '../models/User';
5import { Request } from '../stores/lib/Request'; 5import Request from '../stores/lib/Request';
6import { CachedRequest } from '../stores/lib/CachedRequest'; 6import CachedRequest from '../stores/lib/CachedRequest';
7import Reaction from '../stores/lib/Reaction'; 7import Reaction from '../stores/lib/Reaction';
8 8
9// TODO: This file will be removed in the future when all stores are 9// TODO: This file will be removed in the future when all stores are