UNPKG

homebridge-config-ui-x

Version:

A web based management, configuration and control platform for Homebridge

7 lines (6 loc) 260 B
import { Subscriber } from '../Subscriber'; /** * Subscribes to an ArrayLike with a subscriber * @param array The array or array-like to subscribe to */ export declare const subscribeToArray: <T>(array: ArrayLike<T>) => (subscriber: Subscriber<T>) => void;