emotiv-ts
Version:
A Typescript library that wraps the Cortex API functionalities to communicate with Emotiv headsets
15 lines (12 loc) • 393 B
text/typescript
import {CortexRequest} from "../../internal/cortex-request";
import {Requests} from "../../../enums/internal/emotiv.requests";
export class LicenseInfo extends CortexRequest {
constructor(authToken: string) {
super();
this.id = Requests.LICENSE_INFO;
this.method = "getLicenseInfo";
this.params = {
"cortexToken": authToken
};
}
}