mirror of
https://github.com/valentineus/popov.link.git
synced 2025-07-14 04:40:27 +03:00
10 lines
202 B
TypeScript
10 lines
202 B
TypeScript
|
/// <reference path="../.astro/types.d.ts" />
|
||
|
interface ImportMetaEnv {
|
||
|
readonly DEFAULT_TITLE: string;
|
||
|
readonly DEFAULT_DESCRIPTION: string;
|
||
|
}
|
||
|
|
||
|
interface ImportMeta {
|
||
|
readonly env: ImportMetaEnv;
|
||
|
}
|