File size: 260 Bytes
69f2236
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/// <reference types="vite/client" />

declare global {
  interface ImportMetaEnv {
    readonly VITE_CHATKIT_API_URL?: string;
    readonly VITE_CHATKIT_API_DOMAIN_KEY?: string;
  }

  interface ImportMeta {
    readonly env: ImportMetaEnv;
  }
}

export {};