18 lines
413 B
TypeScript
18 lines
413 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_EMAILJS_SERVICE_ID: string
|
|
readonly VITE_EMAILJS_TEMPLATE_ID_ADMIN: string
|
|
readonly VITE_EMAILJS_TEMPLATE_ID_USER: string
|
|
readonly VITE_EMAILJS_PUBLIC_KEY: string
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv
|
|
}
|
|
|
|
declare module '*.module.css' {
|
|
const classes: { [key: string]: string };
|
|
export default classes;
|
|
}
|