An easy-to-use platform for EEG experimentation in the classroom
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

debugging

-4
-1
app/components/AnalyzeComponent.tsx
··· 52 52 type: EXPERIMENTS; 53 53 deviceType: DEVICES; 54 54 isEEGEnabled: boolean; 55 - mainChannel: any; 56 55 epochsInfo: Array<{ 57 56 [key: string]: number | string; 58 57 }>;
-1
app/components/CleanComponent/index.tsx
··· 27 27 type?: EXPERIMENTS; 28 28 title: string; 29 29 deviceType: DEVICES; 30 - mainChannel?: any; 31 30 epochsInfo: Array<{ 32 31 [key: string]: number | string; 33 32 }>;
-2
app/reducers/pyodideReducer.ts
··· 2 2 import { PyodideActions, ExperimentActions } from '../actions'; 3 3 4 4 export interface PyodideStateType { 5 - readonly mainChannel: any | null | undefined; 6 5 readonly epochsInfo: Array<{ 7 6 [key: string]: number | string; 8 7 }>; ··· 28 27 } 29 28 30 29 const initialState = { 31 - mainChannel: null, 32 30 epochsInfo: [], 33 31 channelInfo: [], 34 32 psdPlot: null,