UNPKG

neramirez-broadlink-ts

Version:

A TypeScript-enhanced Node.JS fork of broadlinkjs, designed for interacting with RM devices in homebridge-broadlink-rm. Now includes a feature for handling multiple requests to the same device, with a specific focus on supporting homebridge-broadlink-wind

5 lines (4 loc) 124 B
export type PromiseExecutor<T> = { resolve: (value: T | PromiseLike<T>) => void; reject: (reason?: any) => void; };