aboutsummaryrefslogtreecommitdiff
path: root/examples/docs/src/env.d.ts
diff options
context:
space:
mode:
authorGravatar Bjorn Lu <bjornlu.dev@gmail.com> 2023-01-17 23:12:26 +0800
committerGravatar GitHub <noreply@github.com> 2023-01-17 23:12:26 +0800
commit2000f5fb1e5cb3b8507213d43ccfc907d22468c2 (patch)
tree59e371cf1ef32e5d72869b794960d7033d5e649a /examples/docs/src/env.d.ts
parent1ca81c16b8b66236e092e6eb6ec3f73f5668421c (diff)
downloadastro-2000f5fb1e5cb3b8507213d43ccfc907d22468c2.tar.gz
astro-2000f5fb1e5cb3b8507213d43ccfc907d22468c2.tar.zst
astro-2000f5fb1e5cb3b8507213d43ccfc907d22468c2.zip
Update blog example env name (#5877)
Diffstat (limited to 'examples/docs/src/env.d.ts')
-rw-r--r--examples/docs/src/env.d.ts8
1 files changed, 8 insertions, 0 deletions
diff --git a/examples/docs/src/env.d.ts b/examples/docs/src/env.d.ts
index f964fe0cf..8e48612f5 100644
--- a/examples/docs/src/env.d.ts
+++ b/examples/docs/src/env.d.ts
@@ -1 +1,9 @@
/// <reference types="astro/client" />
+
+interface ImportMetaEnv {
+ readonly GITHUB_TOKEN: string | undefined;
+}
+
+interface ImportMeta {
+ readonly env: ImportMetaEnv;
+}