diff --git a/src/env.d.ts b/src/env.d.ts
index acef35f..b20e10e 100644
--- a/src/env.d.ts
+++ b/src/env.d.ts
@@ -1,2 +1,12 @@
///
///
+
+interface ImportMetaEnv {
+ readonly PUBLIC_VERCEL_GIT_REPO_OWNER: string;
+ readonly PUBLIC_VERCEL_GIT_REPO_SLUG: string;
+ readonly PUBLIC_VERCEL_GIT_COMMIT_SHA: string;
+}
+
+interface ImportMeta {
+readonly env: ImportMetaEnv;
+}
\ No newline at end of file