Skip to content
Snippets Groups Projects
vite-env.d.ts 304 B
Newer Older
/// <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;
  }
Liliana Sanfilippo's avatar
Liliana Sanfilippo committed
  declare module "gsap/all.js" {
    export default any;
  }