Skip to content
Snippets Groups Projects
Forked from 2024 Competition / Bielefeld-CeBiTec
688 commits behind the upstream repository.
vite-env.d.ts 304 B
/// <reference types="vite/client" />

interface ImportMetaEnv {
    readonly VITE_TEAM_ID: string;
    readonly VITE_TEAM_NAME: string;
    readonly VITE_TEAM_YEAR: string;
  }
  
  interface ImportMeta {
    readonly env: ImportMetaEnv;
  }

  declare module "gsap/all.js" {
    export default any;
  }