UNPKG

homebridge-keyble

Version:
12 lines (9 loc) 277 B
import { API } from 'homebridge'; import { PLATFORM_NAME } from './settings'; import { KeyblePlatform } from './platform'; /** * This method registers the platform with Homebridge */ export = (api: API): void => { api.registerPlatform(PLATFORM_NAME, KeyblePlatform); };