From e1850d5279c2db4453a0a0c1159ca7fbf645d8b9 Mon Sep 17 00:00:00 2001 From: Xevion Date: Fri, 24 May 2024 16:42:51 -0500 Subject: [PATCH] ImportMetaEnv interface definition --- src/env.d.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) 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