UNPKG

emotiv-ts

Version:

A Typescript library that wraps the Cortex API functionalities to communicate with Emotiv headsets

8 lines (6 loc) 248 B
export interface Format { name: string; version: string | null } export const RecordFormat = { EDF: <Format>{ name: "EDF", version: null } , CSV: <Format>{ name: "CSV", version: "V1" }, CSV_2: <Format>{ name: "CSV", version: "V2" }, }