UNPKG

dirigera

Version:

A TypeScript client for IKEA's DIRIGERA smart home hub

9 lines (8 loc) 253 B
import type { CommonEventProperties } from './Event.ts'; export type RemotePressEvent = { type: 'remotePressEvent'; data: { id: string; clickPattern: 'singlePress' | 'doublePress' | 'longPress'; }; } & CommonEventProperties;