[ci] yarn format

This commit is contained in:
natemoo-re 2022-01-06 16:28:24 +00:00 committed by GitHub Actions
parent 7e8f7c7e9e
commit 8b58ede2cc

View file

@ -38,11 +38,11 @@ To achieve, you can create an `env.d.ts` in `src` directory, then augment `Impor
```ts ```ts
interface ImportMetaEnv { interface ImportMetaEnv {
readonly PUBLIC_POKEAPI: string readonly PUBLIC_POKEAPI: string;
// more env variables... // more env variables...
} }
interface ImportMeta { interface ImportMeta {
readonly env: ImportMetaEnv readonly env: ImportMetaEnv;
} }
``` ```