From 8b58ede2ccfc2e8db92f44f67e979cd9a0b1306d Mon Sep 17 00:00:00 2001 From: natemoo-re Date: Thu, 6 Jan 2022 16:28:24 +0000 Subject: [PATCH] [ci] yarn format --- docs/src/pages/en/guides/environment-variables.md | 4 ++-- 1 file 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; } ```