vite-env.d.ts 246 B

123456789101112131415
  1. /// <reference types="vite/client" />
  2. interface ImportMetaEnv {
  3. readonly VITE_PRIMARY: string
  4. }
  5. interface ImportMeta {
  6. readonly env: ImportMetaEnv
  7. }
  8. module 'virtual:svg-icons-register' {
  9. const content: any;
  10. export default content;
  11. }