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