An easy-to-use platform for EEG experimentation in the classroom
1/// <reference types="vite/client" />
2
3interface ImportMetaEnv {
4 readonly VITE_CLIENT_ID: string;
5 readonly VITE_CLIENT_SECRET: string;
6 readonly VITE_LICENSE_ID: string;
7 readonly VITE_LOG_LEVEL: string;
8}
9
10interface ImportMeta {
11 readonly env: ImportMetaEnv;
12}
13
14declare module '*.py?raw' {
15 const content: string;
16 export default content;
17}
18
19declare module '*.py' {
20 const content: string;
21 export default content;
22}