UNPKG

emotiv-ts

Version:

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

11 lines (10 loc) 260 B
import { CortexResponse } from "../../internal/cortex-response"; export class Authorisation extends CortexResponse { token; warning; constructor(token, warning) { super(); this.token = token; this.warning = warning; } }