aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/config/variables.ts8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/config/variables.ts b/src/config/variables.ts
new file mode 100644
index 0000000..b58316f
--- /dev/null
+++ b/src/config/variables.ts
@@ -0,0 +1,8 @@
+type CacheVariables = {
+ CACHE_CONFIG: {
+ key: string;
+ duration: number;
+ };
+};
+
+export type AniwatchAPIVariables = {} & CacheVariables;