UNPKG

emotiv-ts

Version:

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

11 lines (10 loc) 269 B
import { CortexResponse } from "../../internal/cortex-response"; export class Access extends CortexResponse { isGranted; message; constructor(isGranted, message) { super(); this.isGranted = isGranted; this.message = message; } }