ive-connect
Version:
A universal haptic device control library for interactive experiences
15 lines (14 loc) • 559 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.HspPlayState = void 0;
/**
* HSP Play state enum
*/
var HspPlayState;
(function (HspPlayState) {
HspPlayState[HspPlayState["NOT_INITIALIZED"] = 0] = "NOT_INITIALIZED";
HspPlayState[HspPlayState["PLAYING"] = 1] = "PLAYING";
HspPlayState[HspPlayState["STOPPED"] = 2] = "STOPPED";
HspPlayState[HspPlayState["PAUSED"] = 3] = "PAUSED";
HspPlayState[HspPlayState["STARVING"] = 4] = "STARVING";
})(HspPlayState || (exports.HspPlayState = HspPlayState = {}));