UNPKG

homebridge-config-ui-x

Version:

A web based management, configuration and control platform for Homebridge

6 lines (4 loc) 174 B
import { SchedulerLike } from '../types'; export function isScheduler(value: any): value is SchedulerLike { return value && typeof (<any>value).schedule === 'function'; }