aboutsummaryrefslogtreecommitdiffstats
path: root/src/@types/stores.types.ts
diff options
context:
space:
mode:
authorLibravatar Vijay A <vraravam@users.noreply.github.com>2024-03-22 02:33:33 +0530
committerLibravatar Vijay Aravamudhan <vraravam@users.noreply.github.com>2024-03-21 21:24:35 +0000
commit2f3f2ae7f098376f535e5aa993c9eedc14e36f5d (patch)
treed919bda212744493a7b66c2e91a75455421d62cc /src/@types/stores.types.ts
parentUpgrade electron to '29.1.5' (diff)
downloadferdium-app-2f3f2ae7f098376f535e5aa993c9eedc14e36f5d.tar.gz
ferdium-app-2f3f2ae7f098376f535e5aa993c9eedc14e36f5d.tar.zst
ferdium-app-2f3f2ae7f098376f535e5aa993c9eedc14e36f5d.zip
Upgrade node modules
Diffstat (limited to 'src/@types/stores.types.ts')
-rw-r--r--src/@types/stores.types.ts14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/@types/stores.types.ts b/src/@types/stores.types.ts
index c2d7bd78a..a2e935bf1 100644
--- a/src/@types/stores.types.ts
+++ b/src/@types/stores.types.ts
@@ -1,11 +1,11 @@
1/* eslint-disable no-use-before-define */ 1/* eslint-disable no-use-before-define */
2import Workspace from '../features/workspaces/models/Workspace'; 2import type Workspace from '../features/workspaces/models/Workspace';
3import Recipe from '../models/Recipe'; 3import type Recipe from '../models/Recipe';
4import Service from '../models/Service'; 4import type Service from '../models/Service';
5import User from '../models/User'; 5import type User from '../models/User';
6import Request from '../stores/lib/Request'; 6import type CachedRequest from '../stores/lib/CachedRequest';
7import CachedRequest from '../stores/lib/CachedRequest'; 7import type Reaction from '../stores/lib/Reaction';
8import Reaction from '../stores/lib/Reaction'; 8import type Request from '../stores/lib/Request';
9 9
10// TODO: This file will be removed in the future when all stores are 10// TODO: This file will be removed in the future when all stores are
11// correctly typed and the use of these interfaces are obsolete. 11// correctly typed and the use of these interfaces are obsolete.