emotiv-ts
Version:
A Typescript library that wraps the Cortex API functionalities to communicate with Emotiv headsets
13 lines (12 loc) • 355 B
TypeScript
/**
* This enumeration holds the Emotiv profile actions.
* These are used for performing different actions on profiles using the Cortex API, i.e. create a profile or load a profile
*/
export declare enum ProfileActions {
CREATE = "create",
LOAD = "load",
UNLOAD = "unload",
SAVE = "save",
RENAME = "rename",
DELETE = "delete"
}