aboutsummaryrefslogtreecommitdiffstats
path: root/src/@types
diff options
context:
space:
mode:
authorLibravatar Ricardo Cino <ricardo@cino.io>2022-07-07 09:31:50 +0200
committerLibravatar GitHub <noreply@github.com>2022-07-07 09:31:50 +0200
commit71c52373f81cace664047edd19d9d289f45a4dff (patch)
tree69b3f1d45a8b3f1ceab9497ea3c96e9dc18e3166 /src/@types
parent6.0.0-nightly.91 [skip ci] (diff)
downloadferdium-app-71c52373f81cace664047edd19d9d289f45a4dff.tar.gz
ferdium-app-71c52373f81cace664047edd19d9d289f45a4dff.tar.zst
ferdium-app-71c52373f81cace664047edd19d9d289f45a4dff.zip
chore: Mobx & React-Router upgrade (#406)
Co-authored-by: Vijay A <vraravam@users.noreply.github.com>
Diffstat (limited to 'src/@types')
-rw-r--r--src/@types/ferdium-components.types.ts6
-rw-r--r--src/@types/ferdium.types.ts2
2 files changed, 4 insertions, 4 deletions
diff --git a/src/@types/ferdium-components.types.ts b/src/@types/ferdium-components.types.ts
index 03cfdc3b7..516ef9dd7 100644
--- a/src/@types/ferdium-components.types.ts
+++ b/src/@types/ferdium-components.types.ts
@@ -7,7 +7,7 @@ export interface StoresProps {
7} 7}
8 8
9export interface GlobalError { 9export interface GlobalError {
10 status: number; 10 status?: number;
11 message: string; 11 message?: string;
12 code: string; 12 code?: string;
13} 13}
diff --git a/src/@types/ferdium.types.ts b/src/@types/ferdium.types.ts
index 0747f8e14..db8711cd3 100644
--- a/src/@types/ferdium.types.ts
+++ b/src/@types/ferdium.types.ts
@@ -19,4 +19,4 @@ declare global {
19 * Workaround to make TS recognize this file as a module. 19 * Workaround to make TS recognize this file as a module.
20 * https://fettblog.eu/typescript-augmenting-global-lib-dom/ 20 * https://fettblog.eu/typescript-augmenting-global-lib-dom/
21 */ 21 */
22export { }; 22export {};