UNPKG

@k-roon/homebridge-hejhome-ir

Version:
12 lines (11 loc) 606 B
import { HejhomePlatform } from '../platform.js'; /** API가 허용하는 값 타입 */ export type CommandValue = boolean | string | number; /** POST /control 본문 형태 */ export interface CommandBody { requirments: Record<string, CommandValue>; } /** 범용 제어 함수 (여러 키 동시 전송용) */ export declare const control: (platform: HejhomePlatform, deviceId: string, body: CommandBody) => Promise<null>; /** 단일 IR 명령 전송용 */ export declare const postIrCommand: (platform: HejhomePlatform, deviceId: string, commandName: string, command: CommandValue) => Promise<null>;