UNPKG

emotiv-ts

Version:

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

8 lines (7 loc) 278 B
import type { w3cwebsocket } from 'websocket'; export declare class RecordService { socket: w3cwebsocket; constructor(socket: w3cwebsocket); startRecord(recordName: string): Promise<unknown>; stopRecord(authToken: string, sessionId: string): Promise<unknown>; }