summaryrefslogtreecommitdiffstats
path: root/@types
diff options
context:
space:
mode:
authorLibravatar Ricardo Cino <ricardo@cino.io>2022-06-26 01:26:19 +0200
committerLibravatar GitHub <noreply@github.com>2022-06-25 23:26:19 +0000
commit465b5772763ccb8d4970d4c55e30a518abb7be3e (patch)
treee929e34910dbf6a3958cdc4de77dc1dcae93e7b0 /@types
parentchore: add more strict types in electron directory (#367) (diff)
downloadferdium-app-465b5772763ccb8d4970d4c55e30a518abb7be3e.tar.gz
ferdium-app-465b5772763ccb8d4970d4c55e30a518abb7be3e.tar.zst
ferdium-app-465b5772763ccb8d4970d4c55e30a518abb7be3e.zip
chore: moved tests to ./test directory (#366)
* chore: allow coverage to be generated from non-tested files
Diffstat (limited to '@types')
-rw-r--r--@types/index.d.ts21
1 files changed, 0 insertions, 21 deletions
diff --git a/@types/index.d.ts b/@types/index.d.ts
deleted file mode 100644
index 015f1eb91..000000000
--- a/@types/index.d.ts
+++ /dev/null
@@ -1,21 +0,0 @@
1declare global {
2 interface Window {
3 ferdium: any;
4 }
5
6 namespace NodeJS {
7 interface ProcessEnv {
8 GITHUB_AUTH_TOKEN: string;
9 NODE_ENV: 'development' | 'production';
10 FERDIUM_APPDATA_DIR?: string;
11 PORTABLE_EXECUTABLE_DIR?: string;
12 ELECTRON_IS_DEV?: string;
13 APPDATA?: string;
14 }
15 }
16}
17/**
18 * Workaround to make TS recognize this file as a module.
19 * https://fettblog.eu/typescript-augmenting-global-lib-dom/
20 */
21export {};