UNPKG

emotiv-ts

Version:

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

13 lines (12 loc) 387 B
import { CortexRequest } from "../../internal/cortex-request"; import { Requests } from "../../../enums/internal/emotiv.requests"; export class LicenseInfo extends CortexRequest { constructor(authToken) { super(); this.id = Requests.LICENSE_INFO; this.method = "getLicenseInfo"; this.params = { "cortexToken": authToken }; } }