ive-connect
Version:
A universal haptic device control library for interactive experiences
12 lines (11 loc) • 710 B
TypeScript
/**
* IVE Connect Library
*
* A universal haptic device control library that provides a consistent interface
* for managing various haptic devices (Handy, Buttplug, Autoblow, etc.)
*/
export { DeviceManager } from "./core/device-manager";
export { EventEmitter } from "./core/events";
export { ConnectionState, DeviceCapability, type DeviceInfo, type DeviceSettings, type DeviceScriptLoadResult, type Funscript, type FunscriptAction, type HapticDevice, type ScriptData, type ScriptLoadResult, type ScriptOptions, } from "./core/device-interface";
export { loadScript, parseCSVToFunscript, invertFunscript, isValidFunscript, type LoadScriptResult, } from "./core/script-loader";
export * from "./devices";