Index: frontend/node_modules/dotenv-expand/index.d.ts
===================================================================
--- frontend/node_modules/dotenv-expand/index.d.ts	(revision 9af201e94b5a79beb92a30858fc54de4bc3b9449)
+++ frontend/node_modules/dotenv-expand/index.d.ts	(revision 9af201e94b5a79beb92a30858fc54de4bc3b9449)
@@ -0,0 +1,15 @@
+export = dotenv_expand;
+
+interface DotenvResult {
+    error?: Error;
+    parsed?: {
+        [name: string]: string;
+    };
+}
+
+declare function dotenv_expand(config: DotenvResult): DotenvResult;
+
+declare namespace dotenv_expand {
+    const prototype: {
+    };
+}
