summaryrefslogtreecommitdiff
path: root/docs/src
diff options
context:
space:
mode:
authorGravatar natemoo-re <natemoo-re@users.noreply.github.com> 2022-01-06 16:28:24 +0000
committerGravatar GitHub Actions <actions@github.com> 2022-01-06 16:28:24 +0000
commit8b58ede2ccfc2e8db92f44f67e979cd9a0b1306d (patch)
tree7ebe702820863821279430becabfa48119a6d5f2 /docs/src
parent7e8f7c7e9ede3ea36797a4559597f6596da32284 (diff)
downloadastro-8b58ede2ccfc2e8db92f44f67e979cd9a0b1306d.tar.gz
astro-8b58ede2ccfc2e8db92f44f67e979cd9a0b1306d.tar.zst
astro-8b58ede2ccfc2e8db92f44f67e979cd9a0b1306d.zip
[ci] yarn format
Diffstat (limited to 'docs/src')
-rw-r--r--docs/src/pages/en/guides/environment-variables.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/src/pages/en/guides/environment-variables.md b/docs/src/pages/en/guides/environment-variables.md
index 1d3b9cfef..c8546c8d7 100644
--- a/docs/src/pages/en/guides/environment-variables.md
+++ b/docs/src/pages/en/guides/environment-variables.md
@@ -38,11 +38,11 @@ To achieve, you can create an `env.d.ts` in `src` directory, then augment `Impor
```ts
interface ImportMetaEnv {
- readonly PUBLIC_POKEAPI: string
+ readonly PUBLIC_POKEAPI: string;
// more env variables...
}
interface ImportMeta {
- readonly env: ImportMetaEnv
+ readonly env: ImportMetaEnv;
}
```