mirror of
https://github.com/xHyroM/website.git
synced 2024-11-10 01:38:05 +01:00
10 lines
211 B
TypeScript
10 lines
211 B
TypeScript
/// <reference path="../.astro/types.d.ts" />
|
|
/// <reference types="astro/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly GITHUB_ACCESS_TOKEN: string;
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|