emotiv-ts
Version:
A Typescript library that wraps the Cortex API functionalities to communicate with Emotiv headsets
13 lines (12 loc) • 452 B
TypeScript
import type { w3cwebsocket } from 'websocket';
import { EmotivService } from "./emotiv.service";
import type { Application } from "../models/application";
import { RecordService } from "./record.service";
export declare class MarkerService {
socket: w3cwebsocket;
emotivService: EmotivService;
recordService: RecordService;
constructor(socket: w3cwebsocket, application: Application);
addMarker(): void;
private injectMarker;
}