You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Portfolio/src/vite-env.d.ts

12 lines
283 B

/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_GITHUB_USERNAME: string;
readonly VITE_TWITTER_USERNAME: string;
readonly VITE_YOUTUBE_CHANNEL_ID: string;
readonly VITE_MASTODON_URL: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}