@hangtime/grip-connect-cli
Version:
CLI tool for Grip Connect devices
11 lines • 443 B
TypeScript
/**
* Device registry -- single source of truth for all supported devices.
*
* Each entry maps a lowercase key to a {@link DeviceDefinition} that
* contains the human-readable name, runtime constructor, and
* device-specific actions.
*/
import type { DeviceDefinition } from "../types.js";
/** Map of device keys to their definitions. */
export declare const devices: Record<string, DeviceDefinition>;
//# sourceMappingURL=index.d.ts.map