diff options
author | Valentin Popov <valentin@popov.link> | 2024-09-12 01:03:55 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2024-09-12 01:03:55 +0300 |
commit | c89ed0f7f9dcf14d1d96ad0d13ad59f5b542396e (patch) | |
tree | 9c2a9ab17662a1b9c9539c9246b19b82f46d47f8 /src/env.d.ts | |
parent | 97aa90a605602b9385ba734e2bd9d155aed954e8 (diff) | |
download | popov.link-c89ed0f7f9dcf14d1d96ad0d13ad59f5b542396e.tar.xz popov.link-c89ed0f7f9dcf14d1d96ad0d13ad59f5b542396e.zip |
Update default title and description
Diffstat (limited to 'src/env.d.ts')
-rw-r--r-- | src/env.d.ts | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/env.d.ts b/src/env.d.ts index e16c13c..d714331 100644 --- a/src/env.d.ts +++ b/src/env.d.ts @@ -1 +1,9 @@ /// <reference path="../.astro/types.d.ts" /> +interface ImportMetaEnv { + readonly DEFAULT_TITLE: string; + readonly DEFAULT_DESCRIPTION: string; +} + +interface ImportMeta { + readonly env: ImportMetaEnv; +} |